This tutorial shows how to manipulate EcoPlots’s plot ecological data downloads using R. This document usses the following libraries: tidyverse, kablExtra, fs, easystats and bookdown libraries.
featureId and observationId are unique keys for a feature and observation, respectively. These two identifiers are the work-horses for joining and transforming tables (e.g. from the longer to a wider format).Figure 1.1: Ecological Data Representation in TERN’s data model
First things first, some background:
An FOI can have many observations. You can make observations on the height, diameter, wood density of a single tree (see Figure 1.1). Similarly, observations and FOIs can have multiple attributes. For instance, reliability and/or accuracy of an observation are attributes, as well as notes on an observation or sample sizes.
To download Ecoplots data visit the portal https://ecoplots.tern.org.au/. Once in there click on the search plot data button to explore (cirlced in red in the figure below, Figure 3.1)
Figure 3.1: EcoPlots landing page
Below you can see a snapshot of the EcoPlots data grid (Figure 3.2). Using the facets (marked in red on the left hand side of Figure 3.2) you can filter to specific databases, regions, feature types, parameters and dates (not shown). Once you have selected the data that you want to query you can trigger a download clicking the add to cart button (top left corner, marked in blue in Figure 3.2). After adding items to your cart, if you have not already done so, you will be prompted to sign in to download the data.
Figure 3.2: EcoPlots facets and data grid
Figure 3.3: EcoPlots download
Once you received your download you can always come back to it later (up to two weeks) and if you want to you can keep a permanent copy of it to share by minting a DOI (Figure 3.4 under actions button circled in red)
Figure 3.4: EcoPlots download mint
Now let’s look at a EcoPlots download. IN the code chunk below we show a download example for plant specimen data from the TERN Ecosystem Surveillance database (Sparrow et al. 2022).
An EcoPlots download comes in a package that contains:
bag-info.txt with:
.bib format citation.bib## data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/
## ├── bag-info.txt
## ├── bagit.txt
## ├── data
## │ ├── 9dc09342b70211ec98bc1e69ee627a0b.bib
## │ ├── 9dc09342b70211ec98bc1e69ee627a0b.ris
## │ ├── data_dictionary_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── dataset_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── plant-specimen_feature_attribute_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── plant-specimen_observations_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── plant-specimen_taxon_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── site_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── site_attribute_a90cdf26053fa1e844fc822c91b49286.csv
## │ ├── sitevisit_a90cdf26053fa1e844fc822c91b49286.csv
## │ └── sitevisit_attribute_a90cdf26053fa1e844fc822c91b49286.csv
## ├── manifest-md5.txt
## └── tagmanifest-md5.txt
Structure and relationships between the data types are provided using URI’s. All definitions, methods, and even observations in a data download will have a URI, in the tables this URIs are identified with the Id suffix.
The basic columns of the longer format tables are:
featureType is a human readable name for the feature which observation we are interested on. A complete list of all feature types can be found herefeatureId column contains single unique identifier for each individual featureparametersName column that contains the names of the columns in the wide formatresult column for sourcing the values that will be used to fill in the named columns aboveIn general, the conversion from longer to wider format should be achieved by using featureType and featureId as unique identifiers, the parametersName that literally contains the name of the parameters performed on the FOI (observations) and result that is the value for a given observation.
In pseudo-code the transformation looks something like the steps below
#Reading in the data
data = read_csv("<PACKAGE>/data/<FOI>_observations.csv", na = "N/A")
#Pivoting (i.e. transforming) the data from longer format to wider format
# using the FOI as an id, the parametersName for the column names and results as the values to fill in the rows with
data_wide = pivot_function(id_cols =(featureId), names_column = parametersName, values_column = result)
The pseudo-code above should transform a longer table where the observation names are in parametersName
and the observation values in result to a wide table format with features as rows and columns as parameters as below (Table 3.1).
| featureType | featureTypeId | featureId | observationId | parameterNameId | parametersName | result |
|---|---|---|---|---|---|---|
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54678013 | plant_occur-obs-parameter-54678013 | plant-height-definition | plantHeight | 1.0e+02 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54678013 | plant_occur-obs-parameter-54308023 | wood-density-definition | woodDensity | 9.0e-01 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54678013 | plant_occur-obs-parameter-54311897 | dbh-definition | dbh | 3.0e+02 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54678013 | plant_occur-obs-parameter-54311960 | abovegroundbiomass-definition | AGB | 1.0e+04 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54308023 | plant_occur-obs-parameter-54677329 | plant-height-definition | plantHeight | 2.0e+01 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54308023 | plant_occur-obs-parameter-54313983 | wood-density-definition | woodDensity | 5.0e-01 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54308023 | plant_occur-obs-parameter-54313996 | dbh-definition | dbh | 1.0e+02 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54308023 | plant_occur-obs-parameter-54310263 | abovegroundbiomass-definition | AGB | 1.0e+03 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54313884 | plant_occur-obs-parameter-54310266 | plant-height-definition | plantHeight | 5.0e+00 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54313884 | plant_occur-obs-parameter-54313884 | wood-density-definition | woodDensity | 6.5e-01 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54313884 | plant_occur-obs-parameter-54310261 | dbh-definition | dbh | 4.0e+01 |
| plant occurrence | plant-occurrence-definition | plant_occurr_id-54313884 | plant_occur-obs-parameter-54310264 | abovegroundbiomass-definition | AGB | 5.0e+02 |
| featureId | plantHeight | woodDensity | dbh | AGB |
|---|---|---|---|---|
| plant_occurr_id-54678013 | 100 | 0.90 | 300 | 10000 |
| plant_occurr_id-54308023 | 20 | 0.50 | 100 | 1000 |
| plant_occurr_id-54313884 | 5 | 0.65 | 40 | 500 |
Below we provide examples of how to manipulate site, site-visit and FOI tables, we show how to:
EcoPlots download comes in a longer format. Below we show on how to transform the long format to a wider format using site data and plant occurrence data. The basic workflow is to first identifying the unique id’s that link multiple observations (appended with id, see Figure 4.1), then identifying the columns that contain the column names (e.g. for FOI’s parameters and for attributes attributeName) and finally the columns that contain the observations/values (e.g. for FOI’s result and for attributes values). In the image below we provide an example of id’s linking multiple observations to a single FOI.
Figure 4.1: Unique identifier link multiple observations to their FOI
Each site attribute has an URI, and points to a site through a siteId (Table 4.1).
To transform the site attributes table (Table 4.1) to the wider format (Table 4.2) the siteId can be used as the unique key, the attributeName for the names of the columns, and the value column for the values.
#read in table
site_att %>%
pivot_wider(id_cols=c(siteId),names_from = attributeName,values_from= value)-> site_att_wide
| siteId | bioregion | plot shape | plot width | plot length | plot area | location name | permanent plot | site notes |
|---|---|---|---|---|---|---|---|---|
| http://linked.data.gov.au/dataset/ausplots/site-waayal0003 | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope rising up to crest of the dune that overlooks bay. Avg 5-6 degree slope to the west but flattens out at the top. No surface strew. Long unburnt but some dead trees. Grazing effect is low- some rabbits and goats. Lysimachia and Hypochaeris but cover is quite low. Homogeneity- 75m from centre of the plot is same community- more or less confined to the plot but continues along dune slope to the north and south. South west corner is 50m in from Steep Point access track. |
| http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. |
| http://linked.data.gov.au/dataset/ausplots/site-waayal0004 | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | The site is a perched swamp situated in the swale of a dunefield. There is a small amount of cobble-sized limestone fragments as well as a little bit of sandstone gravel. The swamp is relatively flat but drains to the north. The site is homogenous and the community extends 60m from centre of the plot to west, about 40-15m to the south where it is stopped by a road, it finishes along the eastern edge of plot and extends 80m to north but transitions to more of a Melaleuca dominated shrubland. The nearest infrastructure is the main 4WD track through the park and it is about 10-15m to the south from the south west corner. The site is long unburnt and the impact of grazing is low with only evidence of macropod scats and pads. The impact of introduced weeds is also minimal. |
| http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. |
| http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. |
| http://linked.data.gov.au/dataset/ausplots/site-waayal0005 | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Plots is a dune slope in a dune field with 5 degree slope that peters out on the eastern edge. Slope is to the east. No surface strew- very sandy. Long unburnt- lots of old dead growth in the shrub layer but no evidence of recent fire. Grazing effect is minimal- kangaroos possibly goats too but in low numbers. Plot is homogenous- community extends across the track and for 200m+ to the south. Track is 10m in from the eastern edge. |
| http://linked.data.gov.au/dataset/ausplots/site-waayal0001 | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope dropping down to cliffs on western edge. 6 degree slope to the west. Some very low limestone outcrops and some limestone cobbles but mostly covered by sand. Long unburnt. Not grazed but possibly some rabbits. Introduced plant effect is low but Senecio may be a weed- check Ids and inform Rangers. Plot is homogenous- a little bit rockier on western edge. Extensive community along dune slope to the south. To the north is turnaround area for steep point car park. North east corner is about 15m from track moving away to the north west corner which is about 35m south of turnaround area. |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0011 | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Andado Station | True | Gibber plain |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0013 | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Andado Station | True | Evidence of old disturbance on and near the site. An old track runs through the site and another just south of the site is badly eroded. However it appears that these tracks are no longer in use. |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0014 | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Simpson Desert | True | Broad longitudinal plain (north south aligned) about 5kms wide between dunes |
| http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. |
| http://linked.data.gov.au/dataset/ausplots/site-nsabhc0002 | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | False | Plot is on a plain between low rises. Slope to the south east rising more towards the north west corner where there is a low rise. 3 degree slope. Drainage line though the centre of the site running east but overall slope is to the south east. Some gravels through the site- mostly quartzite but some limestone gravels. Plot is within the regeneration reserve but some dirt bike tracks around ( but not in) the site- 50m away. 200m from main sealed road. Plot not marked. Minimal impact of introduced plant species, Sonchus oleraceus present. |
| http://linked.data.gov.au/dataset/ausplots/site-wagcoo0001 | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Flat site. Minimal impact of introduced plant species. Long unburnt- sparse mid and ground layer. Some surface strew. Community is confine to the plot. North and south of plot is more open spinifex dominated system. NE corner is 180m from past access track to the north east. |
| http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0009 | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Swale. Plot running North west to South East. Run on area in North east corner. |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. |
| http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. |
| http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. |
| http://linked.data.gov.au/dataset/ausplots/site-waanul0001 | Nullarbor | square | 100.0 | 100.0 | 10000.0 | Arubiddy Station | True | Atriplex vesicaria Chenopod shrubland with some emergent Maireana sedifolia. Site is in very slight depression about 5 hectares in size. Surrounded by Maireana sedifolia. Some limestone gravel and boulders. Limestone starts at about 20cm below the surface. Long unburnt. Grazing effect low- no sheep but old rabbit warrens within the site. No introduced plant species noted. Site is flat. Some recent rain- active vegetation growth. |
| http://linked.data.gov.au/dataset/ausplots/site-ntassd0008 | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Simpson Desert | True | Large Swale, plot aligned North/ South. Grazing effect minimal. No introduced plant species noted. |
| http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete |
| http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. |
We first load the plant specimen data (Table 4.3).
plant_specimen_long <- read_csv("data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/data/plant-specimen_observations_a90cdf26053fa1e844fc822c91b49286.csv", na = "N/A")
Then we transform the table into wide format using as keys siteName, siteId, siteVisitName,transectName, featureId. Notice how after transformation each parameter exist in its own column (Table 4.4).
plant_specimen_long %>%
pivot_wider(id_cols=c(featureId,siteId,siteVisitId),names_from = parameter,values_from= result) -> plant_specimen_wide
The same transformation can be done with the FOI attributes tables. Once we read in the data we can use the featureId as unique identifier for the features. The column names are stored in attributeName and their values in value column. The end result is a table with a row for each feature (i.e. each plant specimen) and each of their attributes as columns (Table 4.5).
plant_specimen_att_long <- read_csv(file = "data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/data/plant-specimen_feature_attribute_a90cdf26053fa1e844fc822c91b49286.csv", na = "N/A")
#transform from longer to wider format
plant_specimen_att_long %>%
pivot_wider(id_cols=c(featureId),names_from = attributeName,values_from= value)-> plant_specimen_att_wide
| featureId | voucher barcode | date identified | growth form | specimen holder | identified by | identification uncertainty | identification remarks | state catalog number |
|---|---|---|---|---|---|---|---|---|
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007635 | WAA++007635 | 2017-08-02T00:00:00Z | Sedge | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020114 | WAA020114 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013981 | SAA013981 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020487 | SAA020487 | 2021-02-04T00:00:00Z | Shrub | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020495 | SAA020495 | 2021-01-19T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020649 | SAA020649 | 2021-01-18T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004575 | NTA+004575 | 2012-12-02T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020579 | SAA020579 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004682 | NTA+004682 | 2012-12-02T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890252.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000235 | AUG+000235 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022764 | WAA022764 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA021868 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004647 | NTA+004647 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020158 | WAA020158 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004752 | NTA+004752 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019730 | WAA019730 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020068 | WAA020068 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020501 | SAA020501 | 2021-02-11T00:00:00Z | Forb | NA | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020685 | SAA020685 | 2021-02-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020529 | SAA020529 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021936 | WAA021936 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile. Need to see flowering material. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013977 | SAA013977 | 2021-01-18T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014807 | NSA014807 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Inadequate | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014783 | NSA014783 | 2019-06-01T00:00:00Z | Shrub | NSW Herbarium, Sydney | Barbara Wiecek, NSW Herbarium | False | Retained at NSW National Herbarium | NSW 1057437 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004645 | NTA+004645 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888432.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020761 | SAA020761 | 2021-02-09T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP APC Comment: Bromus hordeaceus subsp. hordeaceus is recognised as a distinct taxon in SA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020136 | WAA020136 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019850 | WAA019850 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020627 | SAA020627 | 2021-02-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022010 | WAA022010 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019872 | WAA019872 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021934 | WAA021934 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, additional material is T. indica subsp. bidens. Mixed collection with WAA022765 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004702 | NTA+004702 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020767 | SAA020767 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014795 | NSA014795 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Glycine probably clandestina,infertile, poor material | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003757 | WAA++003757 | 2015-02-05T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003035 | WAA+003035 | 2013-11-16T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007638 | WAA++007638 | 2017-08-02T00:00:00Z | Sedge | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020789 | SAA020789 | 2021-02-12T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005564 | NTA++005564 | 2014-01-01T13:17:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003141 | WAA+003141 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003110 | WAA+003110 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020747 | SAA020747 | 2021-02-11T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | Name not confimned in APNI | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020599 | SAA020599 | 2021-02-11T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP Name not confimned in APNI | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020697 | SAA020697 | 2021-02-11T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022020 | WAA022020 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004683 | NTA+004683 | 2012-12-02T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00051 | NSA00051 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00270 | NSA00270 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022016 | WAA022016 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00085 | NSA00085 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004748 | NTA+004748 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020613 | SAA020613 | 2021-01-04T00:00:00Z | Shrub | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa017623 | WAA017623 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | collected with Adansonia gregorii fruit. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019934 | WAA019934 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004778 | NTA+004778 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005245 | NTA++005245 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021920 | WAA021920 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005340 | NTA++005340 | 2014-01-01T16:12:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020769 | SAA020769 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007526 | WAA++007526 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004814 | NTA+004814 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003753 | WAA++003753 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003038 | WAA+003038 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020619 | SAA020619 | 2021-02-15T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | Female plant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004719 | NTA+004719 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005336 | NTA++005336 | 2014-01-01T16:20:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004775 | NTA+004775 | 2012-03-20T00:00:00Z | Tussock grass | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888280.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019790 | WAA019790 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022765 | WAA022765 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA021934 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022749 | WAA022749 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA019800 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019912 | WAA019912 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020060 | WAA020060 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00328 | NSA00328 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004853 | NTA+004853 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003138 | WAA+003138 | 2013-11-16T00:00:00Z | Shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101462 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021908 | WAA021908 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Tentative id of dead plants from previous season. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004689 | NTA+004689 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013969 | SAA013969 | 2021-02-15T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP Female plant and male plant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020064 | WAA020064 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007596 | WAA++007596 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003045 | WAA+003045 | 2013-11-16T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00015 | NSA00015 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020469 | SAA020469 | 2021-01-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019914 | WAA019914 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019172 | WAA019172 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007536 | WAA++007536 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003801 | WAA++003801 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020741 | SAA020741 | 2021-02-11T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004633 | NTA+004633 | 2012-12-02T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00038 | NSA00038 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003102 | WAA+003102 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005219 | NTA++005219 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003135 | WAA+003135 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005235 | NTA++005235 | 2013-12-01T09:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00023 | NSA00023 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003026 | WAA+003026 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021854 | WAA021854 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003037 | WAA+003037 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004897 | NTA+004897 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00336 | NSA00336 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013971 | SAA013971 | 2021-01-04T00:00:00Z | Shrub | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013983 | SAA013983 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020775 | SAA020775 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004568 | NTA+004568 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019886 | WAA019886 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Without fruit. Although less likely, could also be E. boophthona | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003755 | WAA++003755 | 2015-02-05T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193499 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005318 | NTA++005318 | 2014-01-01T16:17:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020116 | WAA020116 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014778 | NSA014778 | 2019-06-04T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020172 | WAA020172 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003769 | WAA++003769 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193545 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004673 | NTA+004673 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888276.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004811 | NTA+004811 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020773 | SAA020773 | 2021-02-11T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004878 | NTA+004878 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004923 | NTA+004923 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021960 | WAA021960 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020669 | SAA020669 | 2021-02-10T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003130 | WAA+003130 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007672 | WAA++007672 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007464 | WAA++007464 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Barcode reads 7465 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020052 | WAA020052 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019846 | WAA019846 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is A. robustus Mixed collection with WAA022748 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014789 | NSA014789 | 2019-06-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Andrew Orme, NSW Herbarium | False | Nomenclatural synonym:Hibbertia linearis var.obtusifolia.Hibbertia obtusifolia - linearis complex | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020615 | SAA020615 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00055 | NSA00055 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00296 | NSA00296 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004817 | NTA+004817 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004574 | NTA+004574 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020563 | SAA020563 | 2021-02-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020499 | SAA020499 | 2021-02-15T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004720 | NTA+004720 | 2012-03-20T00:00:00Z | Chenopod shrub | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231774 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004933 | NTA+004933 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004937 | NTA+004937 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004695 | NTA+004695 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003142 | WAA+003142 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020583 | SAA020583 | 2021-02-09T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003121 | WAA+003121 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00307 | NSA00307 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021918 | WAA021918 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00145 | NSA00145 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021860 | WAA021860 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003147 | WAA+003147 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004591 | NTA+004591 | 2012-12-02T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00034 | NSA00034 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00284 | NSA00284 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000243 | AUG+000243 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003022 | WAA+003022 | 2013-11-16T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101543 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021966 | WAA021966 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020473 | SAA020473 | 2021-02-10T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019740 | WAA019740 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021986 | WAA021986 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003139 | WAA+003139 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020058 | WAA020058 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021870 | WAA021870 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013979 | SAA013979 | 2021-01-15T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003036 | WAA+003036 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005320 | NTA++005320 | 2014-01-01T16:11:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020715 | SAA020715 | 2021-02-09T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007544 | WAA++007544 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00258 | NSA00258 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00158 | NSA00158 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003763 | WAA++003763 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193510 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020102 | WAA020102 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013987 | SAA013987 | 2021-01-04T00:00:00Z | Mallee (tree or shrub) | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004866 | NTA+004866 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004671 | NTA+004671 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021836 | WAA021836 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020477 | SAA020477 | 2021-02-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020112 | WAA020112 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020743 | SAA020743 | 2021-01-04T00:00:00Z | Mallee (tree or shrub) | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020104 | WAA020104 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00229 | NSA00229 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003040 | WAA+003040 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020541 | SAA020541 | 2021-01-14T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP ovary sericeous | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004847 | NTA+004847 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00093 | NSA00093 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020673 | SAA020673 | 2021-02-15T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020777 | SAA020777 | 2021-01-18T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007636 | WAA++007636 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007506 | WAA++007506 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015037 | NSA015037 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Eucalyptus sp., juvenile | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004912 | NTA+004912 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00032 | NSA00032 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000241 | AUG+000241 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007574 | WAA++007574 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003122 | WAA+003122 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020737 | SAA020737 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP APC Comment: Treated as Geranium molle var. molle in Qld, and as G. molle subsp. molle in NSW ( and SA?) Geranium molle elsewhere | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020731 | SAA020731 | 2021-01-18T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004940 | NTA+004940 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020751 | SAA020751 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005558 | NTA++005558 | 2014-01-01T13:21:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014801 | NSA014801 | 2019-06-01T00:00:00Z | Fern (excluding tree ferns) | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021998 | WAA021998 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004911 | NTA+004911 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004928 | NTA+004928 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003761 | WAA++003761 | 2015-02-05T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00263 | NSA00263 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005556 | NTA++005556 | 2014-01-01T13:22:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003785 | WAA++003785 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193561 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004894 | NTA+004894 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004755 | NTA+004755 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003765 | WAA++003765 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193529 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00027 | NSA00027 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | subsp. aff. artemisioides | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020659 | SAA020659 | 2021-02-14T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004672 | NTA+004672 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888279.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014833 | NSA014833 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Boraginaceae either Amsinckia or Heliotropium, fragmentary and infertile. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005594 | NTA++005594 | 2014-01-01T13:21:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005211 | NTA++005211 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004819 | NTA+004819 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004660 | NTA+004660 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890268.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004936 | NTA+004936 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021866 | WAA021866 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007514 | WAA++007514 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | True | Perennial Poaceae Sterile. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014808 | NSA014808 | 2019-06-01T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | Poaceae, inadequate,infertile. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00276 | NSA00276 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013951 | SAA013951 | 2021-01-14T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003009 | WAA+003009 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005330 | NTA++005330 | 2014-01-01T16:16:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020126 | WAA020126 | 2020-04-07T00:00:00Z | Sedge | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00067 | NSA00067 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004788 | NTA+004788 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007528 | WAA++007528 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007564 | WAA++007564 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004809 | NTA+004809 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020100 | WAA020100 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Young plants. It is mostly necessary to see fruiting material in order to id Calandrinias. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021844 | WAA021844 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00142 | NSA00142 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004895 | NTA+004895 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013955 | SAA013955 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00143 | NSA00143 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004898 | NTA+004898 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014813 | NSA014813 | 2019-06-04T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Paspalidium ? Gracile. Heavily grazed. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00294 | NSA00294 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004899 | NTA+004899 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004566 | NTA+004566 | 2012-03-20T00:00:00Z | Tussock grass | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0234235 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00151 | NSA00151 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003788 | WAA++003788 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003119 | WAA+003119 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020699 | SAA020699 | 2021-02-09T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP fruit smooth & papillose, longer than broad, peduncles often exceeding subtending bracts | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005574 | NTA++005574 | 2014-01-01T13:15:00Z | Fern (excluding tree ferns) | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003781 | WAA++003781 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021930 | WAA021930 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005584 | NTA++005584 | 2014-01-01T13:23:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020008 | WAA020008 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014791 | NSA014791 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | No flowers or achenes.Asteraceae, inadequate | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013947 | SAA013947 | 2021-01-14T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007614 | WAA++007614 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00332 | NSA00332 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019182 | WAA019182 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004879 | NTA+004879 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | APC comment: nomenclatural synonym: Acetosa vesicaria | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004920 | NTA+004920 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020110 | WAA020110 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019908 | WAA019908 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004931 | NTA+004931 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005227 | NTA++005227 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004905 | NTA+004905 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007518 | WAA++007518 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Taxonomic synonym of :Phyllanthus baccatus | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00083 | NSA00083 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020651 | SAA020651 | 2021-02-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug++00232 | AUG++00232 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020010 | WAA020010 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020567 | SAA020567 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007602 | WAA++007602 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Germainia truncatiglumis | PERTH 9170022 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004907 | NTA+004907 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020134 | WAA020134 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007608 | WAA++007608 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | APC Comment: Included in Phyllanthus reticulatus in NT. taxonomic synonym of: Phyllanthus baccatus | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021938 | WAA021938 | 2019-11-12T00:00:00Z | Forb | SA Herbarium, Department of Environment, Water and Natural Resources | Laurie Haegi, SA Herbarium | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020439 | SAA020439 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | sterile; excluded L. browniana as leaves not lobed or toothed | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014817 | NSA014817 | 2019-06-05T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Poaceae, inadequate, infertile | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007594 | WAA++007594 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019910 | WAA019910 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007646 | WAA++007646 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | *Passiflora foetida var. hispida | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007530 | WAA++007530 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | somewhat tentative identification of sterile material. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00282 | NSA00282 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004862 | NTA+004862 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00268 | NSA00268 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003044 | WAA+003044 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004670 | NTA+004670 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020479 | SAA020479 | 2021-02-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020735 | SAA020735 | 2021-01-15T00:00:00Z | Shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004691 | NTA+004691 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020663 | SAA020663 | 2021-01-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003131 | WAA+003131 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003805 | WAA++003805 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014809 | NSA014809 | 2019-06-01T00:00:00Z | Woody plant (indeterminate tree or shrub) | NSW Herbarium, Sydney | Barbara Wiecek, NSW Herbarium | False | Retained at NSW National Herbarium | NSW 1057438 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003019 | WAA+003019 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00098 | NSA00098 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004762 | NTA+004762 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020701 | SAA020701 | 2021-02-09T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021852 | WAA021852 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020445 | SAA020445 | 2021-01-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007502 | WAA++007502 | 2017-08-02T00:00:00Z | Sedge | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | True | Previous season’s inflorescence only. Not able to confirm to species, but most likely C. oxycarpus. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004918 | NTA+004918 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | taxonomic synonym: Sida filiformis nom. illeg. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020457 | SAA020457 | 2021-01-04T00:00:00Z | Mallee (tree or shrub) | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019808 | WAA019808 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004586 | NTA+004586 | 2012-12-02T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020088 | WAA020088 | 2020-04-07T00:00:00Z | Rush | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007468 | WAA++007468 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005562 | NTA++005562 | 2014-01-01T13:20:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003120 | WAA+003120 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021928 | WAA021928 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile succulent. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019166 | WAA019166 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is Sclerolaena uniflora. Mixed collection with WAA022747 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007642 | WAA++007642 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019778 | WAA019778 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004767 | NTA+004767 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004952 | NTA+004952 | 2012-03-20T00:00:00Z | Lower plant | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007598 | WAA++007598 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Ficus aculeata A distinctive and rather anomalous variant of the species. | PERTH 9170030 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004655 | NTA+004655 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888425.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00097 | NSA00097 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003033 | WAA+003033 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004371 | NTA+004371 | 2012-03-20T00:00:00Z | Shrub | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231815 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00326 | NSA00326 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_397127 | D_TS_397127 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003132 | WAA+003132 | 2013-11-16T00:00:00Z | Shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101454 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019822 | WAA019822 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004735 | NTA+004735 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888260.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019826 | WAA019826 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Rather tentative id of dead plants from previous season. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003718 | WAA++003718 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004739 | NTA+004739 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004780 | NTA+004780 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00274 | NSA00274 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021992 | WAA021992 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021910 | WAA021910 | 2020-05-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021954 | WAA021954 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003002 | WAA+003002 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003126 | WAA+003126 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004635 | NTA+004635 | 2012-12-02T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890259.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004696 | NTA+004696 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004864 | NTA+004864 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021922 | WAA021922 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, additional material is E. serrulata. Mixed collection with WAA022763 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005233 | NTA++005233 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004863 | NTA+004863 | 2012-03-20T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004773 | NTA+004773 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_459300 | A_F_459300 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007520 | WAA++007520 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020727 | SAA020727 | 2021-02-15T00:00:00Z | Vine | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013949 | SAA013949 | 2021-01-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019158 | WAA019158 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is Thryptomene dampieri. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004733 | NTA+004733 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | orthographic variant: Trianthema pilosa | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020641 | SAA020641 | 2021-02-15T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007572 | WAA++007572 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00047 | NSA00047 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003007 | WAA+003007 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004664 | NTA+004664 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888426.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00334 | NSA00334 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00009 | NSA00009 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004906 | NTA+004906 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022018 | WAA022018 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020707 | SAA020707 | 2021-01-04T00:00:00Z | Shrub | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP YP variant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020471 | SAA020471 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | flowers withered; sepals not crossed, no spotting/botching evident | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004939 | NTA+004939 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014803 | NSA014803 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003042 | WAA+003042 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003797 | WAA++003797 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005251 | NTA++005251 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020749 | SAA020749 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004919 | NTA+004919 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004559 | NTA+004559 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890264.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005253 | NTA++005253 | 2013-12-01T09:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021932 | WAA021932 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004723 | NTA+004723 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007656 | WAA++007656 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Microstachys chamaelea | PERTH 9170103 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013953 | SAA013953 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004953 | NTA+004953 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00227 | NSA00227 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004861 | NTA+004861 | 2012-03-20T00:00:00Z | Tussock grass | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888339.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021842 | WAA021842 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020074 | WAA020074 | 2020-04-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020086 | WAA020086 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014823 | NSA014823 | 2019-06-04T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Possibly Austrostipa either verticillata or ramosissima, glumes empty. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005572 | NTA++005572 | 2014-01-01T13:22:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00248 | NSA00248 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003111 | WAA+003111 | 2013-11-16T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101446 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003149 | WAA+003149 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014835 | NSA014835 | 2019-06-05T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN Facility University of Adelaide | Seanna McCune, NSW Herbarium | True | Fertile material needed | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007664 | WAA++007664 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004705 | NTA+004705 | 2012-03-20T00:00:00Z | Hummock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003145 | WAA+003145 | 2013-11-16T00:00:00Z | Epiphyte | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005217 | NTA++005217 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020072 | WAA020072 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021940 | WAA021940 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain. s. lat. This group of species is currently under revision. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020679 | SAA020679 | 2021-01-04T00:00:00Z | Mallee (tree or shrub) | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020573 | SAA020573 | 2021-02-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020763 | SAA020763 | 2021-02-09T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020597 | SAA020597 | 2021-02-11T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020581 | SAA020581 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004808 | NTA+004808 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00319 | NSA00319 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020505 | SAA020505 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004776 | NTA+004776 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00320 | NSA00320 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_541568 | A_G_541568 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004590 | NTA+004590 | 2012-12-02T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890251.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014773 | NSA014773 | 2019-06-01T00:00:00Z | Woody plant (indeterminate tree or shrub) | NSW Herbarium, Sydney | Barbara Wiecek, NSW Herbarium | False | Retained at NSW National Herbarium | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007560 | WAA++007560 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003767 | WAA++003767 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Treated as Maireana sclerolaenoides in NSW | PERTH 9193537 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005347 | NTA++005347 | 2014-01-01T16:13:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | APC Comment: B.R.Randell & B.A.Barlow, Fl. Australia 12: 108 (1998) noted widespread intergradation between this taxon and several others, especially with S. artemisiodes. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004886 | NTA+004886 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005221 | NTA++005221 | 2013-12-01T09:00:00Z | Sedge | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004889 | NTA+004889 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00149 | NSA00149 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020671 | SAA020671 | 2021-02-15T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004632 | NTA+004632 | 2012-12-02T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004865 | NTA+004865 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007496 | WAA++007496 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020523 | SAA020523 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004945 | NTA+004945 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004560 | NTA+004560 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004761 | NTA+004761 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004805 | NTA+004805 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005582 | NTA++005582 | 2014-01-01T13:19:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020525 | SAA020525 | 2021-02-15T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00217 | NSA00217 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00057 | NSA00057 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00059 | NSA00059 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007643 | WAA++007643 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Somewhat tentative identification of sterile material. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003759 | WAA++003759 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193502 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003003 | WAA+003003 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020717 | SAA020717 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++004614 | NTA++004614 | 2012-12-01T14:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | No comment made. | CANB 890250.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004774 | NTA+004774 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00025 | NSA00025 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014837 | NSA014837 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004908 | NTA+004908 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005256 | NTA++005256 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003114 | WAA+003114 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020062 | WAA020062 | 2020-04-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00095 | NSA00095 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004885 | NTA+004885 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003739 | WAA++003739 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193464 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020108 | WAA020108 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022747 | WAA022747 | 2020-04-07T00:00:00Z | NA | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA019166 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013991 | SAA013991 | 2021-02-04T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020633 | SAA020633 | 2021-02-04T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007625 | WAA++007625 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Adansonia gregorii (fruit) plus Terminalia latipes (leaves). | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007650 | WAA++007650 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Somewhat tentative identification of sterile material | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004896 | NTA+004896 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020056 | WAA020056 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003016 | WAA+003016 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020605 | SAA020605 | 2021-02-18T00:00:00Z | Tussock grass | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007532 | WAA++007532 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019760 | WAA019760 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019840 | WAA019840 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020455 | SAA020455 | 2021-02-16T00:00:00Z | Shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020543 | SAA020543 | 2021-02-18T00:00:00Z | Sedge | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00237 | NSA00237 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004841 | NTA+004841 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020607 | SAA020607 | 2021-01-14T00:00:00Z | Vine | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004824 | NTA+004824 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020709 | SAA020709 | 2021-01-14T00:00:00Z | Vine | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004663 | NTA+004663 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888275.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004399 | NTA+004399 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003017 | WAA+003017 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004667 | NTA+004667 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888278.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003103 | WAA+003103 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004688 | NTA+004688 | 2012-12-02T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888255.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003773 | WAA++003773 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193553 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003146 | WAA+003146 | 2013-11-16T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | APC Comment: nomenclatural synonym: Zygophyllum eremaeum. Treated as Zygophyllum eremaeum in Qld and Vic. Roepera eremaea elsewhere. Specimen stored at WA Herbarium | PERTH 9101470 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005566 | NTA++005566 | 2014-01-01T13:20:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007600 | WAA++007600 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Tentativbe identification of fruiting-only material. The tropical paperbarks are under revision and the current taxonomy relies in large part on floral characters. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020537 | SAA020537 | 2021-02-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019836 | WAA019836 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile, not able to apply infraspecific rank. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005338 | NTA++005338 | 2014-01-01T16:15:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00221 | NSA00221 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020022 | WAA020022 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021904 | WAA021904 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020795 | SAA020795 | 2021-02-18T00:00:00Z | Tussock grass | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007658 | WAA++007658 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019888 | WAA019888 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Rather tentative id of dead plants from previous season. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007618 | WAA++007618 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007534 | WAA++007534 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004743 | NTA+004743 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003118 | WAA+003118 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020621 | SAA020621 | 2021-02-11T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004797 | NTA+004797 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020437 | SAA020437 | 2021-02-15T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP Female plant and male plant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003747 | WAA++003747 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022750 | WAA022750 | 2020-04-07T00:00:00Z | NA | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA020432 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020577 | SAA020577 | 2021-02-09T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007550 | WAA++007550 | 2017-08-02T00:00:00Z | Hummock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020044 | WAA020044 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019784 | WAA019784 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00239 | NSA00239 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021848 | WAA021848 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003039 | WAA+003039 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004589 | NTA+004589 | 2012-12-02T00:00:00Z | Tussock grass | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890258.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004642 | NTA+004642 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00007 | NSA00007 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004800 | NTA+004800 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020721 | SAA020721 | 2021-01-19T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP s. lat. as currently in SA Census; taxonomy subdividing this concept not yet fully applied | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020625 | SAA020625 | 2021-02-12T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP leaves ovate-triangular | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005209 | NTA++005209 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019792 | WAA019792 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Rather tentative id of plants in early bud. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021946 | WAA021946 | 2020-05-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003028 | WAA+003028 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00280 | NSA00280 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020507 | SAA020507 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007568 | WAA++007568 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00154 | NSA00154 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020719 | SAA020719 | 2021-01-14T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000248 | AUG+000248 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020050 | WAA020050 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005345 | NTA++005345 | 2014-01-01T16:10:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007504 | WAA++007504 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00044 | NSA00044 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005328 | NTA++005328 | 2014-01-01T16:15:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005215 | NTA++005215 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004703 | NTA+004703 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004893 | NTA+004893 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00013 | NSA00013 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004950 | NTA+004950 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003743 | WAA++003743 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | APC comment: nomenclatural synonym: Zygophyllum iodocarpum. Treated as Zygophyllum iodocarpum in Qld and Vic Roepera iodocarpa elsewhere | PERTH 9193472 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004617 | NTA+004617 | 2012-12-02T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004397 | NTA+004397 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0234233 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003032 | WAA+003032 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | APC comment: nomenclatural synonym: Zygophyllum iodocarpum. Treated as Zygophyllum iodocarpum in Qld and Vic Roepera iodocarpa elsewhere | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021994 | WAA021994 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019800 | WAA019800 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is Pembertonia latisquamea Mixed collection with WAA022749 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003741 | WAA++003741 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005213 | NTA++005213 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003011 | WAA+003011 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003030 | WAA+003030 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019734 | WAA019734 | 2020-04-07T00:00:00Z | Hummock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007516 | WAA++007516 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021990 | WAA021990 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004766 | NTA+004766 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004872 | NTA+004872 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020016 | WAA020016 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019842 | WAA019842 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022711 | WAA022711 | 2020-06-03T12:00:00Z | Chenopod shrub | NA | EJL | False | not collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021978 | WAA021978 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00264 | NSA00264 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020080 | WAA020080 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004915 | NTA+004915 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00140 | NSA00140 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019168 | WAA019168 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Young plants. It is mostly necessary to see fruiting material in order to id Calandrinias. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020082 | WAA020082 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00272 | NSA00272 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | In NSW recognised at species level, as A. conduplicata | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020617 | SAA020617 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | sterile; excluded L. browniana as leaves not lobed or toothed | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020589 | SAA020589 | 2021-02-04T00:00:00Z | Shrub | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021850 | WAA021850 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021846 | WAA021846 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021980 | WAA021980 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019746 | WAA019746 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019804 | WAA019804 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005249 | NTA++005249 | 2013-12-01T09:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004881 | NTA+004881 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020465 | SAA020465 | 2021-02-09T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003106 | WAA+003106 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000234 | AUG+000234 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | APC Comment: nomenclatural synonym: Brachycomie ciliocarpa. Occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020687 | SAA020687 | 2021-02-18T00:00:00Z | Sedge | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004857 | NTA+004857 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888215.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004880 | NTA+004880 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004549 | NTA+004549 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888431.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004732 | NTA+004732 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020538 | SAA020538 | 2021-01-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020038 | WAA020038 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004910 | NTA+004910 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019930 | WAA019930 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00330 | NSA00330 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00315 | NSA00315 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | subsp. aff. artemisioides | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020441 | SAA020441 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004903 | NTA+004903 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00069 | NSA00069 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014827 | NSA014827 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Boraginaceae either Amsinckia or Heliotropium, fragmentary and infertile. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020432 | WAA020432 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is Beyeria cinerea subsp. borealis. Mixed collection with WAA022750 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00243 | NSA00243 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | Treated as Conyza bonariensis in WA and Tas. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004942 | NTA+004942 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020509 | SAA020509 | 2021-02-18T00:00:00Z | Sedge | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004679 | NTA+004679 | 2012-12-02T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003136 | WAA+003136 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007454 | WAA++007454 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Tephrosia phaeosperma | PERTH 9169881 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005322 | NTA++005322 | 2014-01-01T16:18:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007498 | WAA++007498 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004837 | NTA+004837 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00003 | NSA00003 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021944 | WAA021944 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020084 | WAA020084 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003783 | WAA++003783 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004891 | NTA+004891 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004581 | NTA+004581 | 2012-12-02T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890255.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003008 | WAA+003008 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004554 | NTA+004554 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890266.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020629 | SAA020629 | 2021-01-04T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020545 | SAA020545 | 2021-01-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007606 | WAA++007606 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | somewhat tentative identification of sterile material. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004925 | NTA+004925 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004951 | NTA+004951 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004638 | NTA+004638 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890267.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00303 | NSA00303 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019184 | WAA019184 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is Roepera fruticulosa. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004845 | NTA+004845 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007666 | WAA++007666 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020745 | SAA020745 | 2021-02-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022022 | WAA022022 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003006 | WAA+003006 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019164 | WAA019164 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004822 | NTA+004822 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888258.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003027 | WAA+003027 | 2013-11-16T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101551 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020647 | SAA020647 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00310 | NSA00310 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | Salsola populations in Qld and NSW are referred to S. kali (as S. kali var. kali in NSW) and S. tragus s.l. Other jurisdictions do not recognise S. kali as occurring in Australia, and treat the name as a misapplication to S. australis or S. tragus s.l. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003777 | WAA++003777 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020076 | WAA020076 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015039 | NSA015039 | 2019-06-01T00:00:00Z | Shrub | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020463 | SAA020463 | 2021-02-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003117 | WAA+003117 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004876 | NTA+004876 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004770 | NTA+004770 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa012708 | SAA012708 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019936 | WAA019936 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007610 | WAA++007610 | 2017-08-02T00:00:00Z | Sedge | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Fuirena umbellata | PERTH 9170057 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020467 | SAA020467 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015064 | NSA015064 | 2019-06-04T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021952 | WAA021952 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | (flowering only) It is usually necessary to see seeds in order to confirm id in this genus. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020481 | SAA020481 | 2021-02-04T00:00:00Z | Forb | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005241 | NTA++005241 | 2013-12-01T09:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014805 | NSA014805 | 2019-06-04T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021958 | WAA021958 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020655 | SAA020655 | 2021-02-05T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Juergen Kellermann, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007508 | WAA++007508 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005343 | NTA++005343 | 2014-01-01T16:19:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004954 | NTA+004954 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00305 | NSA00305 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004935 | NTA+004935 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00235 | NSA00235 | 2014-06-06T00:00:00Z | Epiphyte | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014787 | NSA014787 | 2019-11-07T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020527 | SAA020527 | 2021-02-09T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021984 | WAA021984 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | (Section Dialysex) Sterile. It is necessary to see fruiting material in order to apply names in this section. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019848 | WAA019848 | 2020-04-07T00:00:00Z | Hummock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020569 | SAA020569 | 2021-02-04T00:00:00Z | Forb | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004926 | NTA+004926 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0227693 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005223 | NTA++005223 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020475 | SAA020475 | 2021-02-09T00:00:00Z | Forb | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004884 | NTA+004884 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003046 | WAA+003046 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020098 | WAA020098 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Rather tentative id of dead plants from previous season. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022008 | WAA022008 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005244 | NTA++005244 | 2013-12-01T09:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00260 | NSA00260 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014793 | NSA014793 | 2019-06-01T00:00:00Z | Forb | NSW Herbarium, Sydney | Barbara Wiecek, NSW Herbarium | False | Retained at NSW National Herbarium | NSW 1057434 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_156221 | A_G_156221 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_694783 | A_G_694783 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_584919 | A_G_584919 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_grass_653133 | NO_BARCODE_GRASS_653133 | 2020-01-01T15:51:00Z | Tussock grass | NA | NA | True | NULL | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003144 | WAA+003144 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004744 | NTA+004744 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888259.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004892 | NTA+004892 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007604 | WAA++007604 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Eriachne festucacea | PERTH 9170049 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019780 | WAA019780 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022004 | WAA022004 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004557 | NTA+004557 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231814 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00231 | NSA00231 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004929 | NTA+004929 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000249 | AUG+000249 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003021 | WAA+003021 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_288031 | A_F_288031 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020575 | SAA020575 | 2021-02-09T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000238 | AUG+000238 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004849 | NTA+004849 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004869 | NTA+004869 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020793 | SAA020793 | 2021-02-18T00:00:00Z | Tussock grass | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP LABEL LOOSE | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00311 | NSA00311 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003010 | WAA+003010 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004830 | NTA+004830 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00087 | NSA00087 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019180 | WAA019180 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | (Section Dialysex) Most likely A. paludosa, but need to see fruit to confirm. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004949 | NTA+004949 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005261 | NTA++005261 | 2013-12-01T09:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007562 | WAA++007562 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021950 | WAA021950 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020725 | SAA020725 | 2021-02-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004913 | NTA+004913 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00091 | NSA00091 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00001 | NSA00001 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007660 | WAA++007660 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003025 | WAA+003025 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020711 | SAA020711 | 2021-01-14T00:00:00Z | Vine | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | sterile & immature | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00040 | NSA00040 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00215 | NSA00215 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003115 | WAA+003115 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020677 | SAA020677 | 2021-02-12T00:00:00Z | Sedge | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP s. lat., may correspond to L. laeve or L. sp. Narrow leaf (R.L.Taplin 709) | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004832 | NTA+004832 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888257.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004888 | NTA+004888 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020034 | WAA020034 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019838 | WAA019838 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020739 | SAA020739 | 2021-02-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003795 | WAA++003795 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193596 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021974 | WAA021974 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020733 | SAA020733 | 2021-02-15T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00266 | NSA00266 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021856 | WAA021856 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007540 | WAA++007540 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020048 | WAA020048 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004659 | NTA+004659 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888274.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00063 | NSA00063 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004877 | NTA+004877 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019794 | WAA019794 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003004 | WAA+003004 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00065 | NSA00065 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007662 | WAA++007662 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020513 | SAA020513 | 2021-02-11T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004816 | NTA+004816 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003133 | WAA+003133 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020515 | SAA020515 | 2021-02-09T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020548 | SAA020548 | 2021-01-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007538 | WAA++007538 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007546 | WAA++007546 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007522 | WAA++007522 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003108 | WAA+003108 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022012 | WAA022012 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020138 | WAA020138 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020020 | WAA020020 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007566 | WAA++007566 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000239 | AUG+000239 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020755 | SAA020755 | 2021-02-18T00:00:00Z | Forb | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021916 | WAA021916 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003803 | WAA++003803 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193618 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020657 | SAA020657 | 2021-02-09T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013965 | SAA013965 | 2021-02-04T00:00:00Z | Shrub | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP Female plant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007524 | WAA++007524 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014785 | NSA014785 | 2019-06-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Andrew Orme, NSW Herbarium | False | Hibbertia obtusifolia - linearis complex | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004855 | NTA+004855 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004717 | NTA+004717 | 2012-03-20T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00071 | NSA00071 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019756 | WAA019756 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003112 | WAA+003112 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007556 | WAA++007556 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004932 | NTA+004932 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231455 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014831 | NSA014831 | 2019-06-01T00:00:00Z | Chenopod shrub | NSW Herbarium, Sydney | Barbara Wiecek, NSW Herbarium | False | Has vesicular hairs, extension of range to NWS | NSW 1057433 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014819 | NSA014819 | 2019-06-01T00:00:00Z | Woody plant (indeterminate tree or shrub) | NSW Herbarium, Sydney | Barbara Wiecek, NSW Herbarium | False | No comment made | NSW 1057436 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004868 | NTA+004868 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003031 | WAA+003031 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003137 | WAA+003137 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003107 | WAA+003107 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00338 | NSA00338 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003128 | WAA+003128 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004922 | NTA+004922 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003043 | WAA+003043 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003020 | WAA+003020 | 2013-11-16T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101519 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019774 | WAA019774 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020078 | WAA020078 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004938 | NTA+004938 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004914 | NTA+004914 | 2012-03-20T00:00:00Z | Chenopod shrub | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0227694 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00011 | NSA00011 | 2014-06-06T00:00:00Z | Epiphyte | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007570 | WAA++007570 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Taxonomic synonym: Buchanania oblongifolia | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021872 | WAA021872 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004368 | NTA+004368 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015031 | NSA015031 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Infertile | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005596 | NTA++005596 | 2014-01-01T13:19:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003101 | WAA+003101 | 2013-11-16T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | retained at WA Herbarium | PERTH 9101438 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020723 | SAA020723 | 2021-02-09T00:00:00Z | Forb | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004873 | NTA+004873 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004643 | NTA+004643 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888433.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00317 | NSA00317 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021948 | WAA021948 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00211 | NSA00211 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004772 | NTA+004772 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003001 | WAA+003001 | 2013-11-16T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | Specimen stored at WA Herbarium | PERTH 9101527 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022088 | WAA022088 | 2020-05-07T00:00:00Z | Forb | NA | Mike Hislop, WA Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007640 | WAA++007640 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019844 | WAA019844 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019874 | WAA019874 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020503 | SAA020503 | 2021-02-15T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005560 | NTA++005560 | 2014-01-01T13:16:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003105 | WAA+003105 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007632 | WAA++007632 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019816 | WAA019816 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021912 | WAA021912 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019748 | WAA019748 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | A particularly variable species as currently recognised. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020024 | WAA020024 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013959 | SAA013959 | 2021-02-15T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020695 | SAA020695 | 2021-02-15T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP male plant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003134 | WAA+003134 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020132 | WAA020132 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020757 | SAA020757 | 2021-01-04T00:00:00Z | Shrub | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00241 | NSA00241 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020603 | SAA020603 | 2021-02-18T00:00:00Z | Tussock grass | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004930 | NTA+004930 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888224.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000242 | AUG+000242 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020547 | SAA020547 | 2021-01-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007580 | WAA++007580 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Arundinella nepalensis | PERTH 9169911 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019828 | WAA019828 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020551 | SAA020551 | 2021-01-15T00:00:00Z | Vine | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020130 | WAA020130 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile, not able to apply infraspecific rank. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003143 | WAA+003143 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00244 | NSA00244 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003751 | WAA++003751 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193480 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa012114 | SAA012114 | 1970-01-01T09:30:00Z | Mallee (tree or shrub) | NA | Brad Bianco, Nature Conservation Society of South Australia | False | not collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004948 | NTA+004948 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00250 | NSA00250 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00017 | NSA00017 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003023 | WAA+003023 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020759 | SAA020759 | 2021-02-05T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Juergen Kellermann, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022014 | WAA022014 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021982 | WAA021982 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019768 | WAA019768 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019900 | WAA019900 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004867 | NTA+004867 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004785 | NTA+004785 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00019 | NSA00019 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007616 | WAA++007616 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004799 | NTA+004799 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020781 | SAA020781 | 2021-02-11T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00278 | NSA00278 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005225 | NTA++005225 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005592 | NTA++005592 | 2014-01-01T13:16:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003793 | WAA++003793 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007548 | WAA++007548 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005243 | NTA++005243 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004901 | NTA+004901 | 2012-03-20T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007512 | WAA++007512 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020120 | WAA020120 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile twiner | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004947 | NTA+004947 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0227695 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014821 | NSA014821 | 2019-06-01T00:00:00Z | Shrub | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020453 | SAA020453 | 2021-01-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020787 | SAA020787 | 2021-02-16T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020443 | SAA020443 | 2021-02-09T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020653 | SAA020653 | 2021-02-09T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020587 | SAA020587 | 2021-02-09T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004570 | NTA+004570 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890265.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004941 | NTA+004941 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004916 | NTA+004916 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022000 | WAA022000 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020693 | SAA020693 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013985 | SAA013985 | 2021-02-05T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Juergen Kellermann, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000246 | AUG+000246 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007652 | WAA++007652 | 2017-08-02T00:00:00Z | Sedge | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004924 | NTA+004924 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004709 | NTA+004709 | 2012-03-20T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004662 | NTA+004662 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888273.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004828 | NTA+004828 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888216.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00213 | NSA00213 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021081 | WAA021081 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015041 | NSA015041 | 2019-06-01T00:00:00Z | Shrub | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019904 | WAA019904 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00292 | NSA00292 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020591 | SAA020591 | 2021-01-18T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020785 | SAA020785 | 2021-02-16T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00340 | NSA00340 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00021 | NSA00021 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | Treated as Conyza bonariensis in WA and Tas. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003123 | WAA+003123 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019856 | WAA019856 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00252 | NSA00252 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005561 | NTA++005561 | 2014-01-01T13:18:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004790 | NTA+004790 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020094 | WAA020094 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00286 | NSA00286 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020040 | WAA020040 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004807 | NTA+004807 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004795 | NTA+004795 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000247 | AUG+000247 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003034 | WAA+003034 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00073 | NSA00073 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021862 | WAA021862 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00042 | NSA00042 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004545 | NTA+004545 | 2012-03-20T00:00:00Z | Hummock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020012 | WAA020012 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00233 | NSA00233 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019776 | WAA019776 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | A tentative identification of sterile specimen. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021864 | WAA021864 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020521 | SAA020521 | 2021-02-04T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003127 | WAA+003127 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004890 | NTA+004890 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020451 | SAA020451 | 2020-01-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007466 | WAA++007466 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00322 | NSA00322 | 2014-06-06T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00036 | NSA00036 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00029 | NSA00029 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004870 | NTA+004870 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | APC Comment: Treated as Siemssenia capillaris in the NT, Podolepis capillaris elsewhere | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019825 | WAA019825 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022768 | WAA022768 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | ?Sclerolaena eurotioides x Maireana carnosa WA Retain Note, additional material is Maireana carnosa. Mixed collection with WAA021968 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00209 | NSA00209 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020703 | SAA020703 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005586 | NTA++005586 | 2014-01-01T13:23:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004900 | NTA+004900 | 2012-03-20T00:00:00Z | Chenopod shrub | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231457 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021868 | WAA021868 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, additional material is M. amoena. Mixed collection with WAA022764 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004871 | NTA+004871 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013967 | SAA013967 | 2021-02-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003029 | WAA+003029 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020046 | WAA020046 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020631 | SAA020631 | 2021-02-18T00:00:00Z | Sedge | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003047 | WAA+003047 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020489 | SAA020489 | 2021-02-04T00:00:00Z | Shrub | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004553 | NTA+004553 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231818 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00342 | NSA00342 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00299 | NSA00299 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004835 | NTA+004835 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007620 | WAA++007620 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | True | Old inflorescences only, not assignable to species with certainty. Same taxon as 7356. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003012 | WAA+003012 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007670 | WAA++007670 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004874 | NTA+004874 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_forb_238472 | NO_BARCODE_FORB_238472 | 2020-01-01T15:50:00Z | Forb | NA | NA | True | NULL | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004909 | NTA+004909 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022002 | WAA022002 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007628 | WAA++007628 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | True | Sterile and difficult to confirm - most likely Zornia prostrata. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003013 | WAA+003013 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004746 | NTA+004746 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022748 | WAA022748 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA019846 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013999 | SAA013999 | 2021-02-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020557 | SAA020557 | 2021-02-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | Female plant | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007669 | WAA++007669 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004636 | NTA+004636 | 2012-12-02T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890257.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_12337 | A_G_12337 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004836 | NTA+004836 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00061 | NSA00061 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000236 | AUG+000236 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021942 | WAA021942 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000245 | AUG+000245 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004650 | NTA+004650 | 2012-03-20T00:00:00Z | Shrub | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0234234 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004843 | NTA+004843 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004722 | NTA+004722 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000244 | AUG+000244 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022006 | WAA022006 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003124 | WAA+003124 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003775 | WAA++003775 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004727 | NTA+004727 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888277.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000240 | AUG+000240 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004757 | NTA+004757 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019802 | WAA019802 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020006 | WAA020006 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile but probably this species. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa017486 | WAA017486 | 2017-08-11T00:00:00Z | Woody plant (indeterminate tree or shrub) | NA | Emrys Leitch, TERN | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020765 | SAA020765 | 2021-02-09T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019906 | WAA019906 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_54027 | D_TS_54027 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_492306 | D_TS_492306 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004693 | NTA+004693 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020571 | SAA020571 | 2021-02-05T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Juergen Kellermann, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_277232 | D_TS_277232 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007630 | WAA++007630 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | True | Sterile Woody dicot. Most likely young growth of a myrtaceous species. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020164 | WAA020164 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004706 | NTA+004706 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004946 | NTA+004946 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019752 | WAA019752 | 2020-04-07T00:00:00Z | Rush | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004875 | NTA+004875 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | APC Comment: nomenclatural synonym: Mollugo cerviana | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004738 | NTA+004738 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004759 | NTA+004759 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004713 | NTA+004713 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004851 | NTA+004851 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003771 | WAA++003771 | 2015-02-05T00:00:00Z | Shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004711 | NTA+004711 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021964 | WAA021964 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_493191 | A_F_493191 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_forb_480109 | NO_BARCODE_FORB_480109 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020519 | SAA020519 | 2021-01-04T00:00:00Z | Shrub | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019174 | WAA019174 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003745 | WAA++003745 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | APC Comment: nomenclatural synonym: Zygophyllum ovatum. Treated as Zygophyllum ovatum in Vic. Roepera ovata elsewhere | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000250 | AUG+000250 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020106 | WAA020106 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004550 | NTA+004550 | 2012-03-20T00:00:00Z | Forb | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0234252 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004927 | NTA+004927 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00324 | NSA00324 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005258 | NTA++005258 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020609 | SAA020609 | 2021-02-11T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020565 | SAA020565 | 2021-01-14T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020729 | SAA020729 | 2021-01-11T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP only 5 anthers | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020675 | SAA020675 | 2021-02-04T00:00:00Z | Shrub | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020593 | SAA020593 | 2021-02-12T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014811 | NSA014811 | 2019-06-05T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN Facility University of Adelaide | Seanna McCune, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004859 | NTA+004859 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00075 | NSA00075 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | May include Solanum lithophilum in SA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020014 | WAA020014 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019750 | WAA019750 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004904 | NTA+004904 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | May include Solanum lithophilum in SA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004729 | NTA+004729 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | May include Solanum lithophilum in SA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_490751 | A_G_490751 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004564 | NTA+004564 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004802 | NTA+004802 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020092 | WAA020092 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Tentative id of seedlings | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004887 | NTA+004887 | 2012-03-20T00:00:00Z | Sedge | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00290 | NSA00290 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | May include Solanum lithophilum in SA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004921 | NTA+004921 | 2012-03-20T00:00:00Z | Sedge | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00147 | NSA00147 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00049 | NSA00049 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_grass_480900 | NO_BARCODE_GRASS_480900 | NA | Tussock grass | WA Herbarium, Department of Parks and Wildlife | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019766 | WAA019766 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | A tentative identification of sterile specimen. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_grass_420414 | NO_BARCODE_GRASS_420414 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00313 | NSA00313 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_232237 | A_G_232237 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020611 | SAA020611 | 2021-02-09T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022763 | WAA022763 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Mixed collection with WAA21922 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014775 | NSA014775 | 2019-06-01T00:00:00Z | Rush | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005247 | NTA++005247 | 2013-12-01T09:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013989 | SAA013989 | 2021-02-16T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020753 | SAA020753 | 2021-02-16T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003014 | WAA+003014 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021996 | WAA021996 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021970 | WAA021970 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003125 | WAA+003125 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005341 | NTA++005341 | 2014-01-01T16:13:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007612 | WAA++007612 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Mitrasacme connata | PERTH 9170065 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_574801 | A_G_574801 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014781 | NSA014781 | 2019-06-07T00:00:00Z | Shrub | TERN Facility University of Adelaide | Andrew Orme, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_263343 | A_G_263343 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007510 | WAA++007510 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004781 | NTA+004781 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020783 | SAA020783 | 2021-02-15T00:00:00Z | Shrub | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004793 | NTA+004793 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020595 | SAA020595 | 2021-02-11T00:00:00Z | Tussock grass | SA Herbarium | Chris Brodie, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014797 | NSA014797 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | No flowers or fruits | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00256 | NSA00256 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00152 | NSA00152 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004902 | NTA+004902 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00246 | NSA00246 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004699 | NTA+004699 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003109 | WAA+003109 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004944 | NTA+004944 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004684 | NTA+004684 | 2012-12-02T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004742 | NTA+004742 | 2012-03-20T00:00:00Z | Hummock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00045 | NSA00045 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003005 | WAA+003005 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003129 | WAA+003129 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021926 | WAA021926 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020042 | WAA020042 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00081 | NSA00081 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003024 | WAA+003024 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014829 | NSA014829 | 2019-06-04T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007648 | WAA++007648 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Pterocaulon tricholobum | PERTH 9170081 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007590 | WAA++007590 | 2017-08-02T00:00:00Z | Sedge | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007588 | WAA++007588 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003148 | WAA+003148 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003799 | WAA++003799 | 2015-02-05T00:00:00Z | Chenopod shrub | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020691 | SAA020691 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020517 | SAA020517 | 2021-01-19T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020779 | SAA020779 | 2021-01-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00254 | NSA00254 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019832 | WAA019832 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020585 | SAA020585 | 2021-02-09T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020713 | SAA020713 | 2021-02-18T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020497 | SAA020497 | 2021-02-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_grass_5755759108 | NO_BARCODE_GRASS_5755759108 | NA | Tussock grass | WA Herbarium, Department of Parks and Wildlife | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020689 | SAA020689 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021988 | WAA021988 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019178 | WAA019178 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005555 | NTA++005555 | 2014-01-01T13:18:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00223 | NSA00223 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004882 | NTA+004882 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020637 | SAA020637 | 2021-02-04T00:00:00Z | Forb | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00089 | NSA00089 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019758 | WAA019758 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003779 | WAA++003779 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007586 | WAA++007586 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020435 | SAA020435 | 2021-02-04T00:00:00Z | Forb | SA Herbarium | Helen Vonow, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019170 | WAA019170 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Somewhat tentative id of sterile material. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019830 | WAA019830 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020533 | SAA020533 | 2021-01-04T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020535 | SAA020535 | 2021-01-15T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005332 | NTA++005332 | 2014-01-01T16:14:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003104 | WAA+003104 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00225 | NSA00225 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021924 | WAA021924 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00005 | NSA00005 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00309 | NSA00309 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021914 | WAA021914 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003789 | WAA++003789 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193588 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00156 | NSA00156 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021906 | WAA021906 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020070 | WAA020070 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020531 | SAA020531 | 2021-02-09T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00288 | NSA00288 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019754 | WAA019754 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | WA Retain | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021956 | WAA021956 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021858 | WAA021858 | 2020-05-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007654 | WAA++007654 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005239 | NTA++005239 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003041 | WAA+003041 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | Treated as Maireana sclerolaenoides in NSW | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007542 | WAA++007542 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Euphorbia mitchelliana var. mitchelliana | PERTH 9169903 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007558 | WAA++007558 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003015 | WAA+003015 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019156 | WAA019156 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_forb_8812649240 | NO_BARCODE_FORB_8812649240 | NA | Forb | WA Herbarium, Department of Parks and Wildlife | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00077 | NSA00077 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021962 | WAA021962 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004883 | NTA+004883 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005334 | NTA++005334 | 2014-01-01T16:17:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020090 | WAA020090 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004653 | NTA+004653 | 2012-03-20T00:00:00Z | Chenopod shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | CANB 888424.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007645 | WAA++007645 | 2017-08-02T00:00:00Z | Tussock grass | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Panicum effusum | PERTH 9170073 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003018 | WAA+003018 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007592 | WAA++007592 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Cajanus latisepalus | PERTH 9170014 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020771 | SAA020771 | 2021-02-12T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020623 | SAA020623 | 2021-02-16T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020601 | SAA020601 | 2021-02-18T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019902 | WAA019902 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000237 | AUG+000237 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004838 | NTA+004838 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003140 | WAA+003140 | 2013-11-16T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004943 | NTA+004943 | 2012-03-20T00:00:00Z | Chenopod shrub | NT Herbarium, Palmerston | Peter Latz, NT Herbarium Alice Springs | False | NA | DNA D0231456 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005576 | NTA++005576 | 2014-01-01T13:18:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003749 | WAA++003749 | 2015-02-05T00:00:00Z | Forb | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021976 | WAA021976 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020036 | WAA020036 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00079 | NSA00079 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00053 | NSA00053 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | APC Comment: Brachyscome ciliaris var. brachyglossa, var. ciliaris, var. lanuginosa, var. lyrifolia and var. subintegrifolia are recognised as distinct taxa in SA. PlantNET (NSW) comment : Specimens previously identified to variety are now identified as Brachyscome ciliaris complex. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013997 | SAA013997 | 2021-01-19T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003116 | WAA+003116 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | Ptilotus exaltatus is recognised as a distinct taxon in WA and NT. Treated as Ptilotus nobilis else where | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa013957 | SAA013957 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | most likely T. luteocilium, but unable to confirm due to poor condition of pressed speciemn and loss of colour | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019880 | WAA019880 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005349 | NTA++005349 | 2016-01-01T14:03:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter K. Latz NT Herbarium Alice Springs | True | No identification possible | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00219 | NSA00219 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | APC Comment: Brachyscome ciliaris var. brachyglossa, var. ciliaris, var. lanuginosa, var. lyrifolia and var. subintegrifolia are recognised as distinct taxa in SA. PlantNET (NSW) comment : Specimens previously identified to variety are now identified as Brachyscome ciliaris complex. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014799 | NSA014799 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | Doubtful taxonomic synonym of Dichondra sp.Inglewood(J.M.Dalby 86/93) QLD Herbarium | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019834 | WAA019834 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Inflorescence immature, most likely P. debilis | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_dead_tree_5176277161 | NO_BARCODE_DEAD_TREE_5176277161 | NA | NA | WA Herbarium, Department of Parks and Wildlife | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_611809 | D_TS_611809 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020705 | SAA020705 | 2021-01-04T00:00:00Z | Heath or kwongan or wallum shrub | TERN Facility University of Adelaide | Martin O’Leary, SA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019806 | WAA019806 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Young plants. It is mostly necessary to see fruiting material in order to id Calandrinias. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00301 | NSA00301 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020180 | WAA020180 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004714 | NTA+004714 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004934 | NTA+004934 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020122 | WAA020122 | 2020-04-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | sterile perennial | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019814 | WAA019814 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Probably Roebuckiella seedlings | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019810 | WAA019810 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | ?Myoporum sp. (sterile) WA Retain Same taxon as 19964. Refer comments there. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020096 | WAA020096 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_346199 | A_F_346199 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019732 | WAA019732 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004917 | NTA+004917 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_893048 | A_F_893048 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_dead_tree_514161 | NO_BARCODE_DEAD_TREE_514161 | 2020-01-01T15:49:00Z | Woody plant (indeterminate tree or shrub) | NA | NA | True | NULL | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015021 | NSA015021 | 2019-06-04T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Bothriochloa ?decipiens | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019176 | WAA019176 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020066 | WAA020066 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile, but most likely C. planiflora. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_forb_744859 | NO_BARCODE_FORB_744859 | NA | Forb | WA Herbarium, Department of Parks and Wildlife | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019868 | WAA019868 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021972 | WAA021972 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019882 | WAA019882 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile, but most likely C. planiflora. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003113 | WAA+003113 | 2013-11-16T00:00:00Z | Epiphyte | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007500 | WAA++007500 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | No comment made. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_124163 | D_TS_124163 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014815 | NSA014815 | 2019-06-05T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN Facility University of Adelaide | Seanna McCune, NSW Herbarium | False | ?Eucalyptus microcarpa<-> moluccana (intergrade) | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00298 | NSA00298 | 2014-06-06T10:33:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015022 | NSA015022 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | One fruit only | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020661 | SAA020661 | 2021-01-19T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022717 | WAA022717 | 2020-06-03T14:20:00Z | Forb | NA | Emrys Leitch, TERN Adelaide | False | not collected | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020549 | SAA020549 | 2021-01-19T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP close to C. tensa and resembles C. clavula from norhtern EP, perhaps intermediate with C. macroclavia which has been recorded as far S as Warooka on YP. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020511 | SAA020511 | 2021-02-11T00:00:00Z | Heath or kwongan or wallum shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020124 | WAA020124 | 2020-04-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | ?Austrostipa nodosa Sterile. Same taxon as 19812 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_901777 | A_F_901777 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_670622 | A_F_670622 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_37575 | D_TS_37575 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_902263 | D_TS_902263 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020118 | WAA020118 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | ?Myoporum sp. (sterile) Same taxon as 19964. Refer comments there. | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019898 | WAA019898 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Young plants, possibly Gnephosis arachnoidea | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019782 | WAA019782 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007624 | WAA++007624 | 2017-08-02T00:00:00Z | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | True | lost sample. occurs in Point intercept, most likely Eucalyptus miniata | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004583 | NTA+004583 | 2012-12-02T00:00:00Z | Tussock grass | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890256.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019860 | WAA019860 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_784451 | S_L_784451 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_789457 | S_L_789457 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019932 | WAA019932 | 2020-04-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005316 | NTA++005316 | 2014-01-01T16:18:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | True | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_783243 | S_L_783243 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_129705 | S_L_129705 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_738662 | S_L_738662 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019870 | WAA019870 | 2020-04-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_913240 | A_F_913240 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_254651 | S_L_254651 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004666 | NTA+004666 | 2012-03-20T00:00:00Z | Vine | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | APC Comment: misapplication: Citrullus lanatus | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_486230 | S_L_486230 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_dead_tree_533765 | NO_BARCODE_DEAD_TREE_533765 | NA | Woody plant (indeterminate tree or shrub) | WA Herbarium, Department of Parks and Wildlife | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_172188 | A_F_172188 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-no_barcode_dead_tree_202200 | NO_BARCODE_DEAD_TREE_202200 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021968 | WAA021968 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | ?Sclerolaena eurotioides x Maireana carnosa WA Retain Note, additional material is Maireana carnosa. Mixed collection with WAA022768 | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_f_122421 | A_F_122421 | NA | Forb | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005260 | NTA++005260 | 2013-12-01T09:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | Not in APC | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_915109 | D_TS_915109 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019866 | WAA019866 | 2020-04-07T00:00:00Z | Tussock grass | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020054 | WAA020054 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Young plants, possibly Gnephosis arachnoidea | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004818 | NTA+004818 | 2012-03-20T00:00:00Z | Tussock grass | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888256.1 |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014779 | NSA014779 | 2019-06-04T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | To far gone to identify | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020018 | WAA020018 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile shrubby dicot | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_48917 | S_L_48917 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| http://linked.data.gov.au/dataset/ausplots/veg_barcode-s_l_301986 | S_L_301986 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
Below we show how to join tables. For joing tables the only thing we need is to identify the unique id’s that link multiple observations to a feature. For sites and their attributes this is the siteId, for FOI’s and their attributes this is the featureId. For joining different FOI’s the common id would be the siteId.
Sites and their attributes can be joined using their common id’s (i.e.siteId column). Here we load the site table and use the site attribute wider table from above (Table 4.6).
## site attribute load
#read in table
site_att <- read_csv("data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/data/site_attribute_a90cdf26053fa1e844fc822c91b49286.csv", na = "N/A")
#site attr transform
#read in table
site_att %>%
pivot_wider(id_cols=c(siteId),names_from = attributeName,values_from= value)-> site_att_wide
# site table load
site <- read_csv("data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/data/site_a90cdf26053fa1e844fc822c91b49286.csv", na = "N/A")
#join tables
site_all <- left_join(site, site_att_wide, by = c("siteId"))
kbl(site_all, caption = "**Site table with attributes**") %>%
kable_paper() %>%
scroll_box(width = "1000px", height = "200px")
| dataset | datasetId | siteName | siteId | siteType | siteTypeId | dateCommissioned | description | dimension | polygonWkt | pointWkt | latitude | longitude | altitude | pointPositionWithinPlot | pointPositionWithinPlotId | bioregion | plot shape | plot width | plot length | plot area | location name | permanent plot | site notes |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0003 | http://linked.data.gov.au/dataset/ausplots/site-waayal0003 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-29 | Edel Land National Park. 14.4km south east of Shark Bay Ranger Station, 43.5 south west of Denham. | NA | POLYGON((113.3194282 -26.2641743, 113.3194272 -26.26329122, 113.3204157 -26.2632843, 113.3204194 -26.26417288, 113.3194282 -26.2641743)) | POINT(113.3194282 -26.2641743) | -26.26417 | 113.3194 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope rising up to crest of the dune that overlooks bay. Avg 5-6 degree slope to the west but flattens out at the top. No surface strew. Long unburnt but some dead trees. Grazing effect is low- some rabbits and goats. Lysimachia and Hypochaeris but cover is quite low. Homogeneity- 75m from centre of the plot is same community- more or less confined to the plot but continues along dune slope to the north and south. South west corner is 50m in from Steep Point access track. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0004 | http://linked.data.gov.au/dataset/ausplots/site-waayal0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 12.4km south east of ranger station, 43.5km south west of Denham. | NA | POLYGON((113.30129572 -26.25461951, 113.30130182 -26.25371394, 113.30229486 -26.25372922, 113.30229519 -26.25462337, 113.30129572 -26.25461951)) | POINT(113.30129572 -26.25461951) | -26.25462 | 113.3013 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | The site is a perched swamp situated in the swale of a dunefield. There is a small amount of cobble-sized limestone fragments as well as a little bit of sandstone gravel. The swamp is relatively flat but drains to the north. The site is homogenous and the community extends 60m from centre of the plot to west, about 40-15m to the south where it is stopped by a road, it finishes along the eastern edge of plot and extends 80m to north but transitions to more of a Melaleuca dominated shrubland. The nearest infrastructure is the main 4WD track through the park and it is about 10-15m to the south from the south west corner. The site is long unburnt and the impact of grazing is low with only evidence of macropod scats and pads. The impact of introduced weeds is also minimal. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0005 | http://linked.data.gov.au/dataset/ausplots/site-waayal0005 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 25.6km south east of ranger station, 56.3km south west of Denham. | NA | POLYGON((113.3111487 -26.38997799, 113.3111394 -26.38906555, 113.3121496 -26.38908855, 113.3121441 -26.38997006, 113.3111487 -26.38997799)) | POINT(113.3111487 -26.38997799) | -26.38998 | 113.3111 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Plots is a dune slope in a dune field with 5 degree slope that peters out on the eastern edge. Slope is to the east. No surface strew- very sandy. Long unburnt- lots of old dead growth in the shrub layer but no evidence of recent fire. Grazing effect is minimal- kangaroos possibly goats too but in low numbers. Plot is homogenous- community extends across the track and for 200m+ to the south. Track is 10m in from the eastern edge. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0001 | http://linked.data.gov.au/dataset/ausplots/site-waayal0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-28 | Edel Land National Park. 150m south of western most point sign, 45km south west of Denham. | NA | POLYGON((113.15907282 -26.14624536, 113.15907331 -26.14533752, 113.16007138 -26.14534978, 113.16007057 -26.14624239, 113.15907282 -26.14624536)) | POINT(113.15907282 -26.14624536) | -26.14625 | 113.1591 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope dropping down to cliffs on western edge. 6 degree slope to the west. Some very low limestone outcrops and some limestone cobbles but mostly covered by sand. Long unburnt. Not grazed but possibly some rabbits. Introduced plant effect is low but Senecio may be a weed- check Ids and inform Rangers. Plot is homogenous- a little bit rockier on western edge. Extensive community along dune slope to the south. To the north is turnaround area for steep point car park. North east corner is about 15m from track moving away to the north west corner which is about 35m south of turnaround area. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0011 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2013-03-19 | Andado station, 19km west south west of Station homestead. 55km east north east of Finke community | NA | POLYGON((135.11511389 -25.48054722, 135.11511111 -25.47964722, 135.11610833 -25.47965, 135.11610278 -25.48055556, 135.11511389 -25.48054722)) | POINT(135.11511389 -25.48054722) | -25.48055 | 135.1151 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Andado Station | True | Gibber plain |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0013 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2013-03-20 | Andado Station, About 20km south west of Andado Homestead. 56km east of Finke community | NA | POLYGON((135.13950556 -25.52404722, 135.13950556 -25.52314444, 135.14050278 -25.52314444, 135.14050278 -25.52404722, 135.13950556 -25.52404722)) | POINT(135.13950556 -25.52404722) | -25.52405 | 135.1395 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Andado Station | True | Evidence of old disturbance on and near the site. An old track runs through the site and another just south of the site is badly eroded. However it appears that these tracks are no longer in use. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0014 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0014 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2013-03-23 | About 15kms southwest of Mac Clarke Conservation Reserve. 93km north east of Finke community | NA | POLYGON((135.3707 -25.13786944, 135.3707 -25.13696389, 135.37169167 -25.13696667, 135.37169167 -25.13786667, 135.3707 -25.13786944)) | POINT(135.3707 -25.13786944) | -25.13787 | 135.3707 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Simpson Desert | True | Broad longitudinal plain (north south aligned) about 5kms wide between dunes |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0002 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0002 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-31 | Broken Hill Town Common?, 4.5km north west of Broken Hill | NA | POLYGON((141.43296083 -31.92702694, 141.43305194 -31.92612444, 141.43413139 -31.92621083, 141.43400306 -31.92710194, 141.43296083 -31.92702694)) | POINT(141.43296083 -31.92702694) | -31.92703 | 141.4330 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | False | Plot is on a plain between low rises. Slope to the south east rising more towards the north west corner where there is a low rise. 3 degree slope. Drainage line though the centre of the site running east but overall slope is to the south east. Some gravels through the site- mostly quartzite but some limestone gravels. Plot is within the regeneration reserve but some dirt bike tracks around ( but not in) the site- 50m away. 200m from main sealed road. Plot not marked. Minimal impact of introduced plant species, Sonchus oleraceus present. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0001 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-08 | Credo Station. 22km North West of Credo Station Homestead. | NA | POLYGON((120.64290556 -30.43612778, 120.64292722 -30.43522583, 120.6439675 -30.43524444, 120.64394583 -30.43614611, 120.64290556 -30.43612778)) | POINT(120.64290556 -30.43612778) | -30.43613 | 120.6429 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Flat site. Minimal impact of introduced plant species. Long unburnt- sparse mid and ground layer. Some surface strew. Community is confine to the plot. North and south of plot is more open spinifex dominated system. NE corner is 180m from past access track to the north east. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0009 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0009 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Eastern side of Colson Track, 63km North west of Mac Clark conservation park, 34 km SE of Allitra tableland. | NA | POLYGON((136.0114582 -24.7817328, 136.01022504 -24.78032444, 136.01062092 -24.78003588, 136.011862 -24.78144774, 136.0114582 -24.7817328)) | POINT(136.0114582 -24.7817328) | -24.78173 | 136.0115 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Swale. Plot running North west to South East. Run on area in North east corner. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0028 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Umbeara Station 12.5km North East of Kulgera Roadhouse | NA | POLYGON((133.39308056 -25.76993056, 133.39308333 -25.769025, 133.39408333 -25.769025, 133.39407778 -25.76992778, 133.39308056 -25.76993056)) | POINT(133.39308056 -25.76993056) | -25.76993 | 133.3931 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAANUL0001 | http://linked.data.gov.au/dataset/ausplots/site-waanul0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2014-06-29 | Arubiddy Station. 9.9km north west of Arubiddy homestead. 40km north west of Cocklebiddy roadhouse. | NA | POLYGON((125.86994444 -31.73406667, 125.86994444 -31.73316389, 125.87100278 -31.73315833, 125.87099722 -31.734075, 125.86994444 -31.73406667)) | POINT(125.86994444 -31.73406667) | -31.73407 | 125.8699 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Nullarbor | square | 100.0 | 100.0 | 10000.0 | Arubiddy Station | True | Atriplex vesicaria Chenopod shrubland with some emergent Maireana sedifolia. Site is in very slight depression about 5 hectares in size. Surrounded by Maireana sedifolia. Some limestone gravel and boulders. Limestone starts at about 20cm below the surface. Long unburnt. Grazing effect low- no sheep but old rabbit warrens within the site. No introduced plant species noted. Site is flat. Some recent rain- active vegetation growth. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0008 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0008 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Crown land, Colson Track. 134km south east of Andado homestead. 200km east south east of Finke community | NA | POLYGON((136.56246111 -25.77833611, 136.56246389 -25.77743333, 136.56345833 -25.77743056, 136.56345556 -25.77833889, 136.56246111 -25.77833611)) | POINT(136.56246111 -25.77833611) | -25.77834 | 136.5625 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Simpson Desert | True | Large Swale, plot aligned North/ South. Grazing effect minimal. No introduced plant species noted. |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAVIB0004 | http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2016-06-08 | El Questro Station, Cockburn Range. 24.3km north east of El Questro Resort. 36.9km south south west of Wyndam | NA | POLYGON((128.09788333 -15.81960556, 128.09790556 -15.81864167, 128.09885 -15.81868333, 128.09794167 -15.81959167, 128.09788333 -15.81960556)) | POINT(128.09788333 -15.81960556) | -15.81961 | 128.0979 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABBS0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2018-05-11 | Warrumbungle National Park, 28.8km west of Coonabarabran. | NA | NA | POINT(148.976552 -31.281189) | -31.28119 | 148.9766 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. |
The FOI’s id (i.e. featureId) can be used to join attributes to their observations
#we load the plant specimen data
plant_specimen_long <- read_csv("data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/data/plant-specimen_observations_a90cdf26053fa1e844fc822c91b49286.csv", na = "N/A")
#and transform it from longer to wider format
plant_specimen_long %>%
pivot_wider(id_cols=c(featureId,siteId,siteVisitId),names_from = parameter,values_from= result) -> plant_specimen_wide
#We do the same for its attributes
plant_specimen_att_long <- read_csv(file = "data/ecoplots-example/package_9dc09342b70211ec98bc1e69ee627a0b/data/plant-specimen_feature_attribute_a90cdf26053fa1e844fc822c91b49286.csv", na = "N/A")
#transform from longer to wider format
plant_specimen_att_long %>%
pivot_wider(id_cols=c(featureId),names_from = attributeName,values_from= value)-> plant_specimen_att_wide
#finalyy we join the data using the commond key, inthis case the featureId
plant_observations_joined <- left_join(plant_specimen_wide, plant_specimen_att_wide, by = "featureId")
The common key between an FOI and a site table is the siteId, to join an FOI with site data we use this key.
plants_site <- left_join(site_all, plant_observations_joined, by = "siteId")
#show join
plants_site %>%
slice_sample(n = 50)%>%
kbl() %>%
kable_paper() %>%
scroll_box(width = "800px", height = "200px")
| dataset | datasetId | siteName | siteId | siteType | siteTypeId | dateCommissioned | description | dimension | polygonWkt | pointWkt | latitude | longitude | altitude | pointPositionWithinPlot | pointPositionWithinPlotId | bioregion | plot shape | plot width | plot length | plot area | location name | permanent plot | site notes | featureId | siteVisitId | taxon | scientific name | voucher barcode | date identified | growth form | specimen holder | identified by | identification uncertainty | identification remarks | state catalog number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0005 | http://linked.data.gov.au/dataset/ausplots/site-waayal0005 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 25.6km south east of ranger station, 56.3km south west of Denham. | NA | POLYGON((113.3111487 -26.38997799, 113.3111394 -26.38906555, 113.3121496 -26.38908855, 113.3121441 -26.38997006, 113.3111487 -26.38997799)) | POINT(113.3111487 -26.38997799) | -26.38998 | 113.3111 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Plots is a dune slope in a dune field with 5 degree slope that peters out on the eastern edge. Slope is to the east. No surface strew- very sandy. Long unburnt- lots of old dead growth in the shrub layer but no evidence of recent fire. Grazing effect is minimal- kangaroos possibly goats too but in low numbers. Plot is homogenous- community extends across the track and for 200m+ to the south. Track is 10m in from the eastern edge. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020064 | http://linked.data.gov.au/dataset/ausplots/sv-58781 | Pembertonia latisquamea (F.Muell.) P.S.Short | Pembertonia latisquamea | WAA020064 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020701 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Galium leptogonium I.Thomps. | Galium leptogonium | SAA020701 | 2021-02-09T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020731 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Olearia ramulosa (Labill.) Benth. f. ramulosa | Olearia ramulosa | SAA020731 | 2021-01-18T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00055 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Sida intricata F.Muell. | Sida intricata | NSA00055 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0003 | http://linked.data.gov.au/dataset/ausplots/site-waayal0003 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-29 | Edel Land National Park. 14.4km south east of Shark Bay Ranger Station, 43.5 south west of Denham. | NA | POLYGON((113.3194282 -26.2641743, 113.3194272 -26.26329122, 113.3204157 -26.2632843, 113.3204194 -26.26417288, 113.3194282 -26.2641743)) | POINT(113.3194282 -26.2641743) | -26.26417 | 113.3194 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope rising up to crest of the dune that overlooks bay. Avg 5-6 degree slope to the west but flattens out at the top. No surface strew. Long unburnt but some dead trees. Grazing effect is low- some rabbits and goats. Lysimachia and Hypochaeris but cover is quite low. Homogeneity- 75m from centre of the plot is same community- more or less confined to the plot but continues along dune slope to the north and south. South west corner is 50m in from Steep Point access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019872 | http://linked.data.gov.au/dataset/ausplots/sv-58780 | Roebuckiella cheilocarpa (F.Muell.) P.S.Short | Roebuckiella cheilocarpa | WAA019872 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021836 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Nicotiana rotundifolia Lindl. | Nicotiana rotundifolia | WAA021836 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0001 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-08 | Credo Station. 22km North West of Credo Station Homestead. | NA | POLYGON((120.64290556 -30.43612778, 120.64292722 -30.43522583, 120.6439675 -30.43524444, 120.64394583 -30.43614611, 120.64290556 -30.43612778)) | POINT(120.64290556 -30.43612778) | -30.43613 | 120.6429 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Flat site. Minimal impact of introduced plant species. Long unburnt- sparse mid and ground layer. Some surface strew. Community is confine to the plot. North and south of plot is more open spinifex dominated system. NE corner is 180m from past access track to the north east. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_397127 | http://linked.data.gov.au/dataset/ausplots/sv-53613 | NA | Dead Tree/Shrub | D_TS_397127 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-a_g_12337 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Annual Vernal Grass | Annual Grass | A_G_12337 | NA | Tussock grass | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0028 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Umbeara Station 12.5km North East of Kulgera Roadhouse | NA | POLYGON((133.39308056 -25.76993056, 133.39308333 -25.769025, 133.39408333 -25.769025, 133.39407778 -25.76992778, 133.39308056 -25.76993056)) | POINT(133.39308056 -25.76993056) | -25.76993 | 133.3931 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004907 | http://linked.data.gov.au/dataset/ausplots/sv-53746 | Rhodanthe floribunda (A.Cunn. ex DC.) Paul G.Wilson | Rhodanthe floribunda | NTA+004907 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020693 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Thelymitra sp. A | Thelymitra sp. | SAA020693 | 2021-01-19T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020443 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Briza minor L. | Briza minor | SAA020443 | 2021-02-09T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Chris Brodie, SA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020757 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Melaleuca gibbosa Labill. | Melaleuca gibbosa | SAA020757 | 2021-01-04T00:00:00Z | Shrub | SA Herbarium | Martin O’Leary, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020593 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Leptorhynchos squamatus (Labill.) Less. subsp. squamatus | Leptorhynchos squamatus subsp. squamatus | SAA020593 | 2021-02-12T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0028 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Umbeara Station 12.5km North East of Kulgera Roadhouse | NA | POLYGON((133.39308056 -25.76993056, 133.39308333 -25.769025, 133.39408333 -25.769025, 133.39407778 -25.76992778, 133.39308056 -25.76993056)) | POINT(133.39308056 -25.76993056) | -25.76993 | 133.3931 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004876 | http://linked.data.gov.au/dataset/ausplots/sv-53746 | Rhodanthe charsleyae (F.Muell.) Paul G.Wilson | Rhodanthe charsleyae | NTA+004876 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0005 | http://linked.data.gov.au/dataset/ausplots/site-waayal0005 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 25.6km south east of ranger station, 56.3km south west of Denham. | NA | POLYGON((113.3111487 -26.38997799, 113.3111394 -26.38906555, 113.3121496 -26.38908855, 113.3121441 -26.38997006, 113.3111487 -26.38997799)) | POINT(113.3111487 -26.38997799) | -26.38998 | 113.3111 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Plots is a dune slope in a dune field with 5 degree slope that peters out on the eastern edge. Slope is to the east. No surface strew- very sandy. Long unburnt- lots of old dead growth in the shrub layer but no evidence of recent fire. Grazing effect is minimal- kangaroos possibly goats too but in low numbers. Plot is homogenous- community extends across the track and for 200m+ to the south. Track is 10m in from the eastern edge. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020066 | http://linked.data.gov.au/dataset/ausplots/sv-58781 | NA | Cuscuta sp. | WAA020066 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Sterile, but most likely C. planiflora. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004559 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Sida ammophila F.Muell. ex J.H.Willis | Sida ammophila | NTA+004559 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890264.1 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021930 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Gnephosis brevifolia (A.Gray) Benth. | Gnephosis brevifolia | WAA021930 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020525 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Lasiopetalum schulzenii (F.Muell.) Benth. | Lasiopetalum schulzenii | SAA020525 | 2021-02-15T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003036 | http://linked.data.gov.au/dataset/ausplots/sv-53615 | Lawrencia repens (S.Moore) Melville | Lawrencia repens | WAA+003036 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020543 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Dianella revoluta R.Br. var. revoluta | Dianella revoluta var. revoluta | SAA020543 | 2021-02-18T00:00:00Z | Sedge | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020625 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Exocarpos aphyllus R.Br. | Exocarpos aphyllus | SAA020625 | 2021-02-12T00:00:00Z | Shrub | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP leaves ovate-triangular | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004807 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Acacia murrayana F.Muell. ex Benth. | Acacia murrayana | NTA+004807 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004554 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Portulaca intraterranea J.M.Black | Portulaca intraterranea | NTA+004554 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890266.1 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004662 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Ptilotus latifolius R.Br. | Ptilotus latifolius | NTA+004662 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888273.1 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0004 | http://linked.data.gov.au/dataset/ausplots/site-waayal0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 12.4km south east of ranger station, 43.5km south west of Denham. | NA | POLYGON((113.30129572 -26.25461951, 113.30130182 -26.25371394, 113.30229486 -26.25372922, 113.30229519 -26.25462337, 113.30129572 -26.25461951)) | POINT(113.30129572 -26.25461951) | -26.25462 | 113.3013 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | The site is a perched swamp situated in the swale of a dunefield. There is a small amount of cobble-sized limestone fragments as well as a little bit of sandstone gravel. The swamp is relatively flat but drains to the north. The site is homogenous and the community extends 60m from centre of the plot to west, about 40-15m to the south where it is stopped by a road, it finishes along the eastern edge of plot and extends 80m to north but transitions to more of a Melaleuca dominated shrubland. The nearest infrastructure is the main 4WD track through the park and it is about 10-15m to the south from the south west corner. The site is long unburnt and the impact of grazing is low with only evidence of macropod scats and pads. The impact of introduced weeds is also minimal. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020010 | http://linked.data.gov.au/dataset/ausplots/sv-58820 | Beaufortia sprengelioides (DC.) Craven | Beaufortia sprengelioides | WAA020010 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0028 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Umbeara Station 12.5km North East of Kulgera Roadhouse | NA | POLYGON((133.39308056 -25.76993056, 133.39308333 -25.769025, 133.39408333 -25.769025, 133.39407778 -25.76992778, 133.39308056 -25.76993056)) | POINT(133.39308056 -25.76993056) | -25.76993 | 133.3931 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004905 | http://linked.data.gov.au/dataset/ausplots/sv-53746 | Synaptantha tillaeacea (F.Muell.) Hook.f. | Synaptantha tillaeacea | NTA+004905 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020649 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Stackhousia aspericocca subsp. “One-sided inflorescence” (W.R.Barker 697) | Stackhousia aspericocca subsp. one-sided inflorescence (W.R.Barker 697) | SAA020649 | 2021-01-18T00:00:00Z | Forb | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004937 | http://linked.data.gov.au/dataset/ausplots/sv-53747 | Digitaria brownii (Roem. & Schult.) Hughes | Digitaria brownii | NTA+004937 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAVIB0004 | http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2016-06-08 | El Questro Station, Cockburn Range. 24.3km north east of El Questro Resort. 36.9km south south west of Wyndam | NA | POLYGON((128.09788333 -15.81960556, 128.09790556 -15.81864167, 128.09885 -15.81868333, 128.09794167 -15.81959167, 128.09788333 -15.81960556)) | POINT(128.09788333 -15.81960556) | -15.81961 | 128.0979 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007564 | http://linked.data.gov.au/dataset/ausplots/sv-58504 | Bonamia media (R.Br.) Hallier f. | Bonamia media | WAA++007564 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020547 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Cassytha peninsularis J.Z.Weber | Cassytha peninsularis | SAA020547 | 2021-01-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021922 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Eremophila decipiens Ostenf. subsp. decipiens | Eremophila decipiens subsp. decipiens | WAA021922 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, additional material is E. serrulata. Mixed collection with WAA022763 | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABBS0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2018-05-11 | Warrumbungle National Park, 28.8km west of Coonabarabran. | NA | NA | POINT(148.976552 -31.281189) | -31.28119 | 148.9766 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014778 | http://linked.data.gov.au/dataset/ausplots/sv-58580 | Juncus homalocaulis F.Muell. ex Benth. | Juncus homalocaulis | NSA014778 | 2019-06-04T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0009 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0009 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Eastern side of Colson Track, 63km North west of Mac Clark conservation park, 34 km SE of Allitra tableland. | NA | POLYGON((136.0114582 -24.7817328, 136.01022504 -24.78032444, 136.01062092 -24.78003588, 136.011862 -24.78144774, 136.0114582 -24.7817328)) | POINT(136.0114582 -24.7817328) | -24.78173 | 136.0115 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Swale. Plot running North west to South East. Run on area in North east corner. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004693 | http://linked.data.gov.au/dataset/ausplots/sv-53696 | Euphorbia wheeleri Baill. | Euphorbia wheeleri | NTA+004693 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004835 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Indigofera psammophila Peter G.Wilson | Indigofera psammophila | NTA+004835 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004934 | http://linked.data.gov.au/dataset/ausplots/sv-53747 | Salsola tragus L. | Salsola tragus | NTA+004934 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004767 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Goodenia cycloptera R.Br. | Goodenia cycloptera | NTA+004767 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0005 | http://linked.data.gov.au/dataset/ausplots/site-waayal0005 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 25.6km south east of ranger station, 56.3km south west of Denham. | NA | POLYGON((113.3111487 -26.38997799, 113.3111394 -26.38906555, 113.3121496 -26.38908855, 113.3121441 -26.38997006, 113.3111487 -26.38997799)) | POINT(113.3111487 -26.38997799) | -26.38998 | 113.3111 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Plots is a dune slope in a dune field with 5 degree slope that peters out on the eastern edge. Slope is to the east. No surface strew- very sandy. Long unburnt- lots of old dead growth in the shrub layer but no evidence of recent fire. Grazing effect is minimal- kangaroos possibly goats too but in low numbers. Plot is homogenous- community extends across the track and for 200m+ to the south. Track is 10m in from the eastern edge. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020068 | http://linked.data.gov.au/dataset/ausplots/sv-58781 | Acanthocarpus preissii Lehm. | Acanthocarpus preissii | WAA020068 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020451 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Cassytha melantha R.Br. | Cassytha melantha | SAA020451 | 2020-01-15T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020541 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Billardiera cymosa F.Muell. subsp. cymosa | Billardiera cymosa subsp. cymosa | SAA020541 | 2021-01-14T00:00:00Z | Vine | SA Herbarium | Peter Lang, SA Herbarium | False | KEEP ovary sericeous | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAANUL0001 | http://linked.data.gov.au/dataset/ausplots/site-waanul0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2014-06-29 | Arubiddy Station. 9.9km north west of Arubiddy homestead. 40km north west of Cocklebiddy roadhouse. | NA | POLYGON((125.86994444 -31.73406667, 125.86994444 -31.73316389, 125.87100278 -31.73315833, 125.87099722 -31.734075, 125.86994444 -31.73406667)) | POINT(125.86994444 -31.73406667) | -31.73407 | 125.8699 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Nullarbor | square | 100.0 | 100.0 | 10000.0 | Arubiddy Station | True | Atriplex vesicaria Chenopod shrubland with some emergent Maireana sedifolia. Site is in very slight depression about 5 hectares in size. Surrounded by Maireana sedifolia. Some limestone gravel and boulders. Limestone starts at about 20cm below the surface. Long unburnt. Grazing effect low- no sheep but old rabbit warrens within the site. No introduced plant species noted. Site is flat. Some recent rain- active vegetation growth. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003765 | http://linked.data.gov.au/dataset/ausplots/sv-56966 | Dissocarpus biflorus (R.Br.) F.Muell. | Dissocarpus biflorus | WAA++003765 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193529 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00151 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Austrostipa scabra (Lindl.) S.W.L.Jacobs & J.Everett | Austrostipa scabra | NSA00151 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0001 | http://linked.data.gov.au/dataset/ausplots/site-waayal0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-28 | Edel Land National Park. 150m south of western most point sign, 45km south west of Denham. | NA | POLYGON((113.15907282 -26.14624536, 113.15907331 -26.14533752, 113.16007138 -26.14534978, 113.16007057 -26.14624239, 113.15907282 -26.14624536)) | POINT(113.15907282 -26.14624536) | -26.14625 | 113.1591 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope dropping down to cliffs on western edge. 6 degree slope to the west. Some very low limestone outcrops and some limestone cobbles but mostly covered by sand. Long unburnt. Not grazed but possibly some rabbits. Introduced plant effect is low but Senecio may be a weed- check Ids and inform Rangers. Plot is homogenous- a little bit rockier on western edge. Extensive community along dune slope to the south. To the north is turnaround area for steep point car park. North east corner is about 15m from track moving away to the north west corner which is about 35m south of turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019776 | http://linked.data.gov.au/dataset/ausplots/sv-58784 | Scaevola cunninghamii DC. | Scaevola cunninghamii | WAA019776 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | A tentative identification of sterile specimen. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0003 | http://linked.data.gov.au/dataset/ausplots/site-waayal0003 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-29 | Edel Land National Park. 14.4km south east of Shark Bay Ranger Station, 43.5 south west of Denham. | NA | POLYGON((113.3194282 -26.2641743, 113.3194272 -26.26329122, 113.3204157 -26.2632843, 113.3204194 -26.26417288, 113.3194282 -26.2641743)) | POINT(113.3194282 -26.2641743) | -26.26417 | 113.3194 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope rising up to crest of the dune that overlooks bay. Avg 5-6 degree slope to the west but flattens out at the top. No surface strew. Long unburnt but some dead trees. Grazing effect is low- some rabbits and goats. Lysimachia and Hypochaeris but cover is quite low. Homogeneity- 75m from centre of the plot is same community- more or less confined to the plot but continues along dune slope to the north and south. South west corner is 50m in from Steep Point access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019784 | http://linked.data.gov.au/dataset/ausplots/sv-58780 | Carpobrotus rossii (Haw.) Schwantes | Carpobrotus rossii | WAA019784 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004928 | http://linked.data.gov.au/dataset/ausplots/sv-53747 | Tripogonella loliiformis (F.Muell.) P.M.Peterson & Romasch. | Tripogonella loliiformis | NTA+004928 | 2012-03-20T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABBS0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2018-05-11 | Warrumbungle National Park, 28.8km west of Coonabarabran. | NA | NA | POINT(148.976552 -31.281189) | -31.28119 | 148.9766 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa015037 | http://linked.data.gov.au/dataset/ausplots/sv-58580 | Eucalyptus sp. J | Eucalyptus sp. | NSA015037 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | True | Eucalyptus sp., juvenile | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0011 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2013-03-19 | Andado station, 19km west south west of Station homestead. 55km east north east of Finke community | NA | POLYGON((135.11511389 -25.48054722, 135.11511111 -25.47964722, 135.11610833 -25.47965, 135.11610278 -25.48055556, 135.11511389 -25.48054722)) | POINT(135.11511389 -25.48054722) | -25.48055 | 135.1151 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Andado Station | True | Gibber plain | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005223 | http://linked.data.gov.au/dataset/ausplots/sv-53559 | Eragrostis setifolia Nees | Eragrostis setifolia | NTA++005223 | 2013-12-01T09:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003003 | http://linked.data.gov.au/dataset/ausplots/sv-53615 | Lycium australe F.Muell. | Lycium australe | WAA+003003 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022018 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Enchylaena lanata Paul G.Wilson | Enchylaena lanata | WAA022018 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004944 | http://linked.data.gov.au/dataset/ausplots/sv-53747 | Sclerolaena diacantha (Nees) Benth. | Sclerolaena diacantha | NTA+004944 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003046 | http://linked.data.gov.au/dataset/ausplots/sv-53615 | Cephalipterum drummondii A.Gray | Cephalipterum drummondii | WAA+003046 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| dataset | datasetId | siteName | siteId | siteType | siteTypeId | dateCommissioned | description | dimension | polygonWkt | pointWkt | latitude | longitude | altitude | pointPositionWithinPlot | pointPositionWithinPlotId | bioregion | plot shape | plot width | plot length | plot area | location name | permanent plot | site notes | featureId | siteVisitId | taxon | scientific name | voucher barcode | date identified | growth form | specimen holder | identified by | identification uncertainty | identification remarks | state catalog number |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0001 | http://linked.data.gov.au/dataset/ausplots/site-waayal0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-28 | Edel Land National Park. 150m south of western most point sign, 45km south west of Denham. | NA | POLYGON((113.15907282 -26.14624536, 113.15907331 -26.14533752, 113.16007138 -26.14534978, 113.16007057 -26.14624239, 113.15907282 -26.14624536)) | POINT(113.15907282 -26.14624536) | -26.14625 | 113.1591 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope dropping down to cliffs on western edge. 6 degree slope to the west. Some very low limestone outcrops and some limestone cobbles but mostly covered by sand. Long unburnt. Not grazed but possibly some rabbits. Introduced plant effect is low but Senecio may be a weed- check Ids and inform Rangers. Plot is homogenous- a little bit rockier on western edge. Extensive community along dune slope to the south. To the north is turnaround area for steep point car park. North east corner is about 15m from track moving away to the north west corner which is about 35m south of turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019158 | http://linked.data.gov.au/dataset/ausplots/sv-58784 | Thryptomene repens Rye & Trudgen | Thryptomene repens | WAA019158 | 2020-04-07T00:00:00Z | Heath or kwongan or wallum shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, extra material is Thryptomene dampieri. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0011 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0011 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-10-20 | 11.1km north east of Marion bay. 37.1km south west of Warooka | NA | POLYGON((137.04692776 -35.1569092, 137.04692832 -35.15603004, 137.04803247 -35.15602379, 137.04802729 -35.15691618, 137.04692776 -35.1569092)) | POINT(137.04692776 -35.1569092) | -35.15691 | 137.0469 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA635) | True | Flat site on plain with calcrete cobbles and some larger boulders. Thin veneer of soil covering calcrete sheets. Rocky and uneven through the site. Long unburnt. Termite mounds in site. Introduced plant effect is low to moderate - Trifolium campestre most common especially in small open areas but many other species present at low cover incl Aira elegantissima, Lysimachia arvensis, Briza minor, Bromus spp. and Sonchus oleraceus. Lycium ferocissimum noted at plot layout but not collected. Grazing effect is from Kangaroos- beds and scats in the plot. Some native grasses and orchids ( Thelymitra especially) have been severely grazed and there is no recruitment in Allocasuarina verticillata or Bursaria spinosa subsp. spinosa. Small number of emu scats. Long unburnt- no scarring on trees. Plot is homogenous- 75m from centre is same community. Slightly more open through the centre of the plot. 110m from north east corner is property access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020617 | http://linked.data.gov.au/dataset/ausplots/sv-58847 | Lobelia gibbosa Labill. f. gibbosa | Lobelia gibbosa | SAA020617 | 2021-02-16T00:00:00Z | Forb | TERN Facility University of Adelaide | Peter Lang, SA Herbarium | False | sterile; excluded L. browniana as leaves not lobed or toothed | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00079 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Austrostipa sp. Harvey (B.J.Keighery GWAL/1) WA Herbarium | Austrostipa sp. | NSA00079 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | No comment made. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0004 | http://linked.data.gov.au/dataset/ausplots/site-waayal0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 12.4km south east of ranger station, 43.5km south west of Denham. | NA | POLYGON((113.30129572 -26.25461951, 113.30130182 -26.25371394, 113.30229486 -26.25372922, 113.30229519 -26.25462337, 113.30129572 -26.25461951)) | POINT(113.30129572 -26.25461951) | -26.25462 | 113.3013 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | The site is a perched swamp situated in the swale of a dunefield. There is a small amount of cobble-sized limestone fragments as well as a little bit of sandstone gravel. The swamp is relatively flat but drains to the north. The site is homogenous and the community extends 60m from centre of the plot to west, about 40-15m to the south where it is stopped by a road, it finishes along the eastern edge of plot and extends 80m to north but transitions to more of a Melaleuca dominated shrubland. The nearest infrastructure is the main 4WD track through the park and it is about 10-15m to the south from the south west corner. The site is long unburnt and the impact of grazing is low with only evidence of macropod scats and pads. The impact of introduced weeds is also minimal. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020040 | http://linked.data.gov.au/dataset/ausplots/sv-58820 | Frankenia pauciflora DC. | Frankenia pauciflora | WAA020040 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004748 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Abutilon otocarpum F.Muell. | Abutilon otocarpum | NTA+004748 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003033 | http://linked.data.gov.au/dataset/ausplots/sv-53615 | Austrostipa elegantissima (Labill.) S.W.L.Jacobs & J.Everett | Austrostipa elegantissima | WAA+003033 | 2013-11-16T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0001 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-08 | Credo Station. 22km North West of Credo Station Homestead. | NA | POLYGON((120.64290556 -30.43612778, 120.64292722 -30.43522583, 120.6439675 -30.43524444, 120.64394583 -30.43614611, 120.64290556 -30.43612778)) | POINT(120.64290556 -30.43612778) | -30.43613 | 120.6429 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Flat site. Minimal impact of introduced plant species. Long unburnt- sparse mid and ground layer. Some surface strew. Community is confine to the plot. North and south of plot is more open spinifex dominated system. NE corner is 180m from past access track to the north east. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003128 | http://linked.data.gov.au/dataset/ausplots/sv-53613 | Acacia burkittii F.Muell. ex Benth. | Acacia burkittii | WAA+003128 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0002 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0002 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-31 | Broken Hill Town Common?, 4.5km north west of Broken Hill | NA | POLYGON((141.43296083 -31.92702694, 141.43305194 -31.92612444, 141.43413139 -31.92621083, 141.43400306 -31.92710194, 141.43296083 -31.92702694)) | POINT(141.43296083 -31.92702694) | -31.92703 | 141.4330 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | False | Plot is on a plain between low rises. Slope to the south east rising more towards the north west corner where there is a low rise. 3 degree slope. Drainage line though the centre of the site running east but overall slope is to the south east. Some gravels through the site- mostly quartzite but some limestone gravels. Plot is within the regeneration reserve but some dirt bike tracks around ( but not in) the site- 50m away. 200m from main sealed road. Plot not marked. Minimal impact of introduced plant species, Sonchus oleraceus present. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-d_ts_124163 | http://linked.data.gov.au/dataset/ausplots/sv-53597 | NA | Dead Tree/Shrub | D_TS_124163 | NA | NA | TERN AusPlots Facility, University of Adelaide | NA | NA | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0001 | http://linked.data.gov.au/dataset/ausplots/site-waayal0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-28 | Edel Land National Park. 150m south of western most point sign, 45km south west of Denham. | NA | POLYGON((113.15907282 -26.14624536, 113.15907331 -26.14533752, 113.16007138 -26.14534978, 113.16007057 -26.14624239, 113.15907282 -26.14624536)) | POINT(113.15907282 -26.14624536) | -26.14625 | 113.1591 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope dropping down to cliffs on western edge. 6 degree slope to the west. Some very low limestone outcrops and some limestone cobbles but mostly covered by sand. Long unburnt. Not grazed but possibly some rabbits. Introduced plant effect is low but Senecio may be a weed- check Ids and inform Rangers. Plot is homogenous- a little bit rockier on western edge. Extensive community along dune slope to the south. To the north is turnaround area for steep point car park. North east corner is about 15m from track moving away to the north west corner which is about 35m south of turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019778 | http://linked.data.gov.au/dataset/ausplots/sv-58784 | Angianthus cunninghamii (DC.) Benth. | Angianthus cunninghamii | WAA019778 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004934 | http://linked.data.gov.au/dataset/ausplots/sv-53747 | Salsola tragus L. | Salsola tragus | NTA+004934 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | See APC Comment under Salsola tragus on the Australian Plant name index for explanation of S. tragus, S. kali and S. australis | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0028 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Umbeara Station 12.5km North East of Kulgera Roadhouse | NA | POLYGON((133.39308056 -25.76993056, 133.39308333 -25.769025, 133.39408333 -25.769025, 133.39407778 -25.76992778, 133.39308056 -25.76993056)) | POINT(133.39308056 -25.76993056) | -25.76993 | 133.3931 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004867 | http://linked.data.gov.au/dataset/ausplots/sv-53746 | Brachyscome ciliaris (Labill.) Less. | Brachyscome ciliaris | NTA+004867 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAVIB0004 | http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2016-06-08 | El Questro Station, Cockburn Range. 24.3km north east of El Questro Resort. 36.9km south south west of Wyndam | NA | POLYGON((128.09788333 -15.81960556, 128.09790556 -15.81864167, 128.09885 -15.81868333, 128.09794167 -15.81959167, 128.09788333 -15.81960556)) | POINT(128.09788333 -15.81960556) | -15.81961 | 128.0979 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007616 | http://linked.data.gov.au/dataset/ausplots/sv-58504 | Microstachys chamaelea (L.) Hook.f. | Microstachys chamaelea | WAA++007616 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021926 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Acacia ramulosa W.Fitzg. var. ramulosa | Acacia ramulosa var. ramulosa | WAA021926 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa022016 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Rhagodia drummondii Moq. | Rhagodia drummondii | WAA022016 | 2020-05-07T00:00:00Z | Chenopod shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABBS0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2018-05-11 | Warrumbungle National Park, 28.8km west of Coonabarabran. | NA | NA | POINT(148.976552 -31.281189) | -31.28119 | 148.9766 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014837 | http://linked.data.gov.au/dataset/ausplots/sv-58580 | Euphorbia drummondii Boiss. | Euphorbia drummondii | NSA014837 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | No comment made. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAVIB0004 | http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2016-06-08 | El Questro Station, Cockburn Range. 24.3km north east of El Questro Resort. 36.9km south south west of Wyndam | NA | POLYGON((128.09788333 -15.81960556, 128.09790556 -15.81864167, 128.09885 -15.81868333, 128.09794167 -15.81959167, 128.09788333 -15.81960556)) | POINT(128.09788333 -15.81960556) | -15.81961 | 128.0979 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007646 | http://linked.data.gov.au/dataset/ausplots/sv-58504 | Passiflora foetida var. hispida (DC. ex Triana & Planch.) Killip | Passiflora foetida var. hispida | WAA++007646 | 2017-08-02T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | *Passiflora foetida var. hispida | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004857 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Eremophila macdonnellii F.Muell. | Eremophila macdonnellii | NTA+004857 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888215.1 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003016 | http://linked.data.gov.au/dataset/ausplots/sv-53615 | Streptoglossa liatroides (Turcz.) Dunlop | Streptoglossa liatroides | WAA+003016 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004673 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Senna pleurocarpa (F.Muell.) Randell | Senna pleurocarpa | NTA+004673 | 2012-03-20T00:00:00Z | Shrub | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 888276.1 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0002 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0002 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-31 | Broken Hill Town Common?, 4.5km north west of Broken Hill | NA | POLYGON((141.43296083 -31.92702694, 141.43305194 -31.92612444, 141.43413139 -31.92621083, 141.43400306 -31.92710194, 141.43296083 -31.92702694)) | POINT(141.43296083 -31.92702694) | -31.92703 | 141.4330 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | False | Plot is on a plain between low rises. Slope to the south east rising more towards the north west corner where there is a low rise. 3 degree slope. Drainage line though the centre of the site running east but overall slope is to the south east. Some gravels through the site- mostly quartzite but some limestone gravels. Plot is within the regeneration reserve but some dirt bike tracks around ( but not in) the site- 50m away. 200m from main sealed road. Plot not marked. Minimal impact of introduced plant species, Sonchus oleraceus present. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000249 | http://linked.data.gov.au/dataset/ausplots/sv-53597 | Vittadinia gracilis (Hook.f.) N.T.Burb. | Vittadinia gracilis | AUG+000249 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000234 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Roebuckiella ciliocarpa (W.Fitzg.) P.S.Short | Roebuckiella ciliocarpa | AUG+000234 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | APC Comment: nomenclatural synonym: Brachycomie ciliocarpa. Occurs in point intercept but no specimen collected | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAANUL0001 | http://linked.data.gov.au/dataset/ausplots/site-waanul0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2014-06-29 | Arubiddy Station. 9.9km north west of Arubiddy homestead. 40km north west of Cocklebiddy roadhouse. | NA | POLYGON((125.86994444 -31.73406667, 125.86994444 -31.73316389, 125.87100278 -31.73315833, 125.87099722 -31.734075, 125.86994444 -31.73406667)) | POINT(125.86994444 -31.73406667) | -31.73407 | 125.8699 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Nullarbor | square | 100.0 | 100.0 | 10000.0 | Arubiddy Station | True | Atriplex vesicaria Chenopod shrubland with some emergent Maireana sedifolia. Site is in very slight depression about 5 hectares in size. Surrounded by Maireana sedifolia. Some limestone gravel and boulders. Limestone starts at about 20cm below the surface. Long unburnt. Grazing effect low- no sheep but old rabbit warrens within the site. No introduced plant species noted. Site is flat. Some recent rain- active vegetation growth. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003743 | http://linked.data.gov.au/dataset/ausplots/sv-56966 | Roepera iodocarpa (F.Muell.) Beier & Thulin | Roepera iodocarpa | WAA++003743 | 2015-02-05T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | APC comment: nomenclatural synonym: Zygophyllum iodocarpum. Treated as Zygophyllum iodocarpum in Qld and Vic Roepera iodocarpa elsewhere | PERTH 9193472 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0005 | http://linked.data.gov.au/dataset/ausplots/site-waayal0005 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 25.6km south east of ranger station, 56.3km south west of Denham. | NA | POLYGON((113.3111487 -26.38997799, 113.3111394 -26.38906555, 113.3121496 -26.38908855, 113.3121441 -26.38997006, 113.3111487 -26.38997799)) | POINT(113.3111487 -26.38997799) | -26.38998 | 113.3111 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Plots is a dune slope in a dune field with 5 degree slope that peters out on the eastern edge. Slope is to the east. No surface strew- very sandy. Long unburnt- lots of old dead growth in the shrub layer but no evidence of recent fire. Grazing effect is minimal- kangaroos possibly goats too but in low numbers. Plot is homogenous- community extends across the track and for 200m+ to the south. Track is 10m in from the eastern edge. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020054 | http://linked.data.gov.au/dataset/ausplots/sv-58781 | NA | Asteraceae sp. | WAA020054 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Young plants, possibly Gnephosis arachnoidea | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0003 | http://linked.data.gov.au/dataset/ausplots/site-waayal0003 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-29 | Edel Land National Park. 14.4km south east of Shark Bay Ranger Station, 43.5 south west of Denham. | NA | POLYGON((113.3194282 -26.2641743, 113.3194272 -26.26329122, 113.3204157 -26.2632843, 113.3204194 -26.26417288, 113.3194282 -26.2641743)) | POINT(113.3194282 -26.2641743) | -26.26417 | 113.3194 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope rising up to crest of the dune that overlooks bay. Avg 5-6 degree slope to the west but flattens out at the top. No surface strew. Long unburnt but some dead trees. Grazing effect is low- some rabbits and goats. Lysimachia and Hypochaeris but cover is quite low. Homogeneity- 75m from centre of the plot is same community- more or less confined to the plot but continues along dune slope to the north and south. South west corner is 50m in from Steep Point access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019912 | http://linked.data.gov.au/dataset/ausplots/sv-58780 | Brassica tournefortii Gouan | Brassica tournefortii | WAA019912 | 2020-04-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021962 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Podotheca gnaphalioides Graham | Podotheca gnaphalioides | WAA021962 | 2020-05-07T00:00:00Z | Forb | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAVIB0004 | http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2016-06-08 | El Questro Station, Cockburn Range. 24.3km north east of El Questro Resort. 36.9km south south west of Wyndam | NA | POLYGON((128.09788333 -15.81960556, 128.09790556 -15.81864167, 128.09885 -15.81868333, 128.09794167 -15.81959167, 128.09788333 -15.81960556)) | POINT(128.09788333 -15.81960556) | -15.81961 | 128.0979 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007643 | http://linked.data.gov.au/dataset/ausplots/sv-58504 | Wrightia saligna (R.Br.) F.Muell. ex Benth. | Wrightia saligna | WAA++007643 | 2017-08-02T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Somewhat tentative identification of sterile material. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABBS0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2018-05-11 | Warrumbungle National Park, 28.8km west of Coonabarabran. | NA | NA | POINT(148.976552 -31.281189) | -31.28119 | 148.9766 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014811 | http://linked.data.gov.au/dataset/ausplots/sv-58580 | Eucalyptus dealbata A.Cunn. ex Schauer | Eucalyptus dealbata | NSA014811 | 2019-06-05T00:00:00Z | Woody plant (indeterminate tree or shrub) | TERN Facility University of Adelaide | Seanna McCune, NSW Herbarium | False | No comment made | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004739 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Dicrastylis costelloi F.M.Bailey | Dicrastylis costelloi | NTA+004739 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00038 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Chloris virgata Sw. | Chloris virgata | NSA00038 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | SAAEYB0013 | http://linked.data.gov.au/dataset/ausplots/site-saaeyb0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2020-09-09 | Unnamed Heritage Agreement (No.HA583) south of Warrenben Conservation Park. 6.1km sowuth west of Happy Valley homestead.12km west north west of Marion Bay | NA | POLYGON((137.09690289 -35.18971683, 137.09690388 -35.18883152, 137.09800397 -35.18882582, 137.09800567 -35.18971985, 137.09690289 -35.18971683)) | POINT(137.09690289 -35.18971683) | -35.18972 | 137.0969 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Eyre Yorke Block | square | 100.0 | 100.0 | 10000.0 | Unnamed (No.HA583) | True | Calcrete plain with sheet outcrop and cobble sized strew. Slight slope – 3 degrees to the south east. Numerous introduced plant species - Lysimachia arvensis, Aira elegantissima, Briza minor, Hypochaeris glabraand other grasses and forbs but cover is low. Most abundant in areas disturbed by kangaroos- often growing directly out of scats. No emu scats, low number of Kangaroo scats. Long unburnt- no scarring on trees. Plot is homogenous. 200m from centre in same community. Site is patchy at a sub 1ha level but reflects pattern of broader landscape. Eucalyptus oleosa subsp. ampliata, Acacia rupicola and Templetonia retusa denser in southern part of plot while northern half of plot is more open- more exposed limestone outcrop and a higher density of Melaleuca lanceolata. Track 130m east of south east corner of plot. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-saa020463 | http://linked.data.gov.au/dataset/ausplots/sv-58845 | Bursaria spinosa Cav. subsp. spinosa | Bursaria spinosa subsp. spinosa | SAA020463 | 2021-02-04T00:00:00Z | Shrub | TERN Facility University of Adelaide | Helen Vonow, SA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0010 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0010 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Colson Track, 63km North west of Mac Clark Conservation Park, 37 km SE of Allitra Tableland. Second sand dune East of Colson Track. | NA | POLYGON((136.021357 -24.792826, 136.020317 -24.791295, 136.020734 -24.791076, 136.021774 -24.79259, 136.021357 -24.792826)) | POINT(136.021357 -24.792826) | -24.79283 | 136.0214 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004759 | http://linked.data.gov.au/dataset/ausplots/sv-53697 | Ptilotus polystachyus (Gaudich.) F.Muell. f. polystachyus | Ptilotus polystachyus | NTA+004759 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0003 | http://linked.data.gov.au/dataset/ausplots/site-waayal0003 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-29 | Edel Land National Park. 14.4km south east of Shark Bay Ranger Station, 43.5 south west of Denham. | NA | POLYGON((113.3194282 -26.2641743, 113.3194272 -26.26329122, 113.3204157 -26.2632843, 113.3204194 -26.26417288, 113.3194282 -26.2641743)) | POINT(113.3194282 -26.2641743) | -26.26417 | 113.3194 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | Dune slope rising up to crest of the dune that overlooks bay. Avg 5-6 degree slope to the west but flattens out at the top. No surface strew. Long unburnt but some dead trees. Grazing effect is low- some rabbits and goats. Lysimachia and Hypochaeris but cover is quite low. Homogeneity- 75m from centre of the plot is same community- more or less confined to the plot but continues along dune slope to the north and south. South west corner is 50m in from Steep Point access track. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa019910 | http://linked.data.gov.au/dataset/ausplots/sv-58780 | Thysanotus patersonii R.Br. | Thysanotus patersonii | WAA019910 | 2020-04-07T00:00:00Z | Vine | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAANUL0001 | http://linked.data.gov.au/dataset/ausplots/site-waanul0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2014-06-29 | Arubiddy Station. 9.9km north west of Arubiddy homestead. 40km north west of Cocklebiddy roadhouse. | NA | POLYGON((125.86994444 -31.73406667, 125.86994444 -31.73316389, 125.87100278 -31.73315833, 125.87099722 -31.734075, 125.86994444 -31.73406667)) | POINT(125.86994444 -31.73406667) | -31.73407 | 125.8699 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Nullarbor | square | 100.0 | 100.0 | 10000.0 | Arubiddy Station | True | Atriplex vesicaria Chenopod shrubland with some emergent Maireana sedifolia. Site is in very slight depression about 5 hectares in size. Surrounded by Maireana sedifolia. Some limestone gravel and boulders. Limestone starts at about 20cm below the surface. Long unburnt. Grazing effect low- no sheep but old rabbit warrens within the site. No introduced plant species noted. Site is flat. Some recent rain- active vegetation growth. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003761 | http://linked.data.gov.au/dataset/ausplots/sv-56966 | Rytidosperma caespitosum (Gaudich.) Connor & Edgar | Rytidosperma caespitosum | WAA++003761 | 2015-02-05T00:00:00Z | Tussock grass | TERN Facility University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00085 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Abutilon otocarpum F.Muell. | Abutilon otocarpum | NSA00085 | 2014-06-06T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004559 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Sida ammophila F.Muell. ex J.H.Willis | Sida ammophila | NTA+004559 | 2012-03-20T00:00:00Z | Forb | Australian National Herbarium- Canberra | Peter Latz, NT Herbarium Alice Springs | False | NA | CANB 890264.1 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0004 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-10 | Credo Conservation Reserve. Edge of airstrip 2km West of Credo Station Homestead. | NA | POLYGON((120.80608333 -30.46525833, 120.80608333 -30.46436111, 120.807125 -30.46435833, 120.807125 -30.46526111, 120.80608333 -30.46525833)) | POINT(120.80608333 -30.46525833) | -30.46526 | 120.8061 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Plots sits on broad plain, adjacent Credo airstrip. Low impact of introduced plant species- Medicago minima and Salvia verbenaca present but low cover at time of visit. 600m to the south of plot is old, empty turkey nest dam so grazing would have been higher in past but currently low. Long unburnt. Homogeanity- community is confined to plot- north east corner is edge of airstrip. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003043 | http://linked.data.gov.au/dataset/ausplots/sv-53615 | Salsola australis R.Br. | Salsola australis | WAA+003043 | 2013-11-16T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa00149 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Enteropogon acicularis (Lindl.) Lazarides | Enteropogon acicularis | NSA00149 | 2014-06-06T00:00:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0001 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-08 | Credo Station. 22km North West of Credo Station Homestead. | NA | POLYGON((120.64290556 -30.43612778, 120.64292722 -30.43522583, 120.6439675 -30.43524444, 120.64394583 -30.43614611, 120.64290556 -30.43612778)) | POINT(120.64290556 -30.43612778) | -30.43613 | 120.6429 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Flat site. Minimal impact of introduced plant species. Long unburnt- sparse mid and ground layer. Some surface strew. Community is confine to the plot. North and south of plot is more open spinifex dominated system. NE corner is 180m from past access track to the north east. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003119 | http://linked.data.gov.au/dataset/ausplots/sv-53613 | Scaevola spinescens R.Br. | Scaevola spinescens | WAA+003119 | 2013-11-16T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAVIB0004 | http://linked.data.gov.au/dataset/ausplots/site-waavib0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2016-06-08 | El Questro Station, Cockburn Range. 24.3km north east of El Questro Resort. 36.9km south south west of Wyndam | NA | POLYGON((128.09788333 -15.81960556, 128.09790556 -15.81864167, 128.09885 -15.81868333, 128.09794167 -15.81959167, 128.09788333 -15.81960556)) | POINT(128.09788333 -15.81960556) | -15.81961 | 128.0979 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Victoria Bonaparte | square | 100.0 | 100.0 | 10000.0 | El Questro Station | False | complete | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++007542 | http://linked.data.gov.au/dataset/ausplots/sv-58504 | Euphorbia mitchelliana Boiss. var. mitchelliana | Euphorbia mitchelliana var. mitchelliana | WAA++007542 | 2017-08-02T00:00:00Z | Forb | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | #Euphorbia mitchelliana var. mitchelliana | PERTH 9169903 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABHC0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabhc0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-05-29 | Broken Hill Town Common? 7.5km north north west of Broken Hill | NA | POLYGON((141.43375444 -31.89335056, 141.43387694 -31.89245694, 141.43496667 -31.89257056, 141.43486528 -31.89348194, 141.43375444 -31.89335056)) | POINT(141.43375444 -31.89335056) | -31.89335 | 141.4338 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Broken Hill Complex | square | 100.0 | 100.0 | 10000.0 | Broken Hill Town Common | True | Toe slope of a low rise. Sloping to the south west by 2 degrees. Rise on north eastern edge. Minimal surface strew- some very fine gravels but lots of cryptogam crust. Introduced plant effect is minimal- Conyza bonariensis present but very low cover. Homogeneity- confined to site- more Maireana spp. on northern edge. Road is 60m north from the site. Plot is marked- SW corner is marked with fiberglass pole centre with a star picket. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-aug+000237 | http://linked.data.gov.au/dataset/ausplots/sv-53596 | Sclerolaena bicornis Lindl. | Sclerolaena bicornis | AUG+000237 | 2014-06-06T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | James Val, NSW Office of Environment & Heritage | True | occurs in point intercept but no specimen collected | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0004 | http://linked.data.gov.au/dataset/ausplots/site-waayal0004 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-07-30 | Edel Land National Park. 12.4km south east of ranger station, 43.5km south west of Denham. | NA | POLYGON((113.30129572 -26.25461951, 113.30130182 -26.25371394, 113.30229486 -26.25372922, 113.30229519 -26.25462337, 113.30129572 -26.25461951)) | POINT(113.30129572 -26.25461951) | -26.25462 | 113.3013 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Edel Land National Park | True | The site is a perched swamp situated in the swale of a dunefield. There is a small amount of cobble-sized limestone fragments as well as a little bit of sandstone gravel. The swamp is relatively flat but drains to the north. The site is homogenous and the community extends 60m from centre of the plot to west, about 40-15m to the south where it is stopped by a road, it finishes along the eastern edge of plot and extends 80m to north but transitions to more of a Melaleuca dominated shrubland. The nearest infrastructure is the main 4WD track through the park and it is about 10-15m to the south from the south west corner. The site is long unburnt and the impact of grazing is low with only evidence of macropod scats and pads. The impact of introduced weeds is also minimal. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa020158 | http://linked.data.gov.au/dataset/ausplots/sv-58820 | Acacia ligulata A.Cunn. ex Benth. | Acacia ligulata | WAA020158 | 2020-04-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0029 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0029 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-23 | Umbeara Station 18km North East of Kulgera Roadhouse | NA | POLYGON((133.43848333 -25.737475, 133.43848333 -25.73657222, 133.43948056 -25.73656944, 133.43947778 -25.737475, 133.43848333 -25.737475)) | POINT(133.43848333 -25.737475) | -25.73747 | 133.4385 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Very gently sloping site. Slope from the north east to the south east. No evidence of fire though difficult to tell ( no shrub layer) 3+years. Grazing impact moderate- grasses intact. 7km from water point but close to railway acting as a conduit for the cattle. Large patches of open bare ground. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004918 | http://linked.data.gov.au/dataset/ausplots/sv-53747 | Sida sp. (Musselbrook M.B.Thomas+ MRS437) | Sida sp. Musselbrook (M.B.Thomas+ MRS437) | NTA+004918 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | taxonomic synonym: Sida filiformis nom. illeg. | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTAFIN0028 | http://linked.data.gov.au/dataset/ausplots/site-ntafin0028 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Umbeara Station 12.5km North East of Kulgera Roadhouse | NA | POLYGON((133.39308056 -25.76993056, 133.39308333 -25.769025, 133.39408333 -25.769025, 133.39407778 -25.76992778, 133.39308056 -25.76993056)) | POINT(133.39308056 -25.76993056) | -25.76993 | 133.3931 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Finke | square | 100.0 | 100.0 | 10000.0 | Umbeara Station | True | Flat site in shallow drainage depression. Long unburnt due to sparse cover. Grazing impact moderate- 3km from water point. Grass layer still intact. Shallow drainage line running from NW corner to the SW corner at about 30m mark. Auger to 1 m. No pit photos. Minimal impact of introduced plant species. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004880 | http://linked.data.gov.au/dataset/ausplots/sv-53746 | Sclerolaena diacantha (Nees) Benth. | Sclerolaena diacantha | NTA+004880 | 2012-03-20T00:00:00Z | Chenopod shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NSABBS0001 | http://linked.data.gov.au/dataset/ausplots/site-nsabbs0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2018-05-11 | Warrumbungle National Park, 28.8km west of Coonabarabran. | NA | NA | POINT(148.976552 -31.281189) | -31.28119 | 148.9766 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Brigalow Belt South | square | 100.0 | 100.0 | 10000.0 | Warrumbungle National Park | True | Lower bottom slope of the range. 3 degree slope but 5-6 degrees at SW corner. NW aspect. Mostly cobbles of metamorphosed sandstone origin. Some pockets of very low outcrop as well. Burnt in 2013 but not as severe as further up ridge- not as much crown burn. Pig trap in the middle of the plot. Old concrete block ( amenity block from old campground?) and old disused track just creeps in on western edge. Introduced plant effect- check with Herbarium Ids. Homogeneity- community is confined to plot- SW corner rises up onto slope of ridge with ironbarks. Northern edge is close to the road and western edge is turn around area for walking trail. 10m from northern edge to road. 10m from western edge to turnaround area. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nsa014799 | http://linked.data.gov.au/dataset/ausplots/sv-58580 | NA | Dichondra sp. A sensu Harden 1992 | NSA014799 | 2019-06-01T00:00:00Z | Forb | TERN Facility University of Adelaide | Barbara Wiecek, NSW Herbarium | False | Doubtful taxonomic synonym of Dichondra sp.Inglewood(J.M.Dalby 86/93) QLD Herbarium | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0013 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0013 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2013-03-20 | Andado Station, About 20km south west of Andado Homestead. 56km east of Finke community | NA | POLYGON((135.13950556 -25.52404722, 135.13950556 -25.52314444, 135.14050278 -25.52314444, 135.14050278 -25.52404722, 135.13950556 -25.52404722)) | POINT(135.13950556 -25.52404722) | -25.52405 | 135.1395 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | square | 100.0 | 100.0 | 10000.0 | Andado Station | True | Evidence of old disturbance on and near the site. An old track runs through the site and another just south of the site is badly eroded. However it appears that these tracks are no longer in use. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta++005349 | http://linked.data.gov.au/dataset/ausplots/sv-53563 | NA | No ID | NTA++005349 | 2016-01-01T14:03:00Z | Tussock grass | TERN AusPlots Facility, University of Adelaide | Peter K. Latz NT Herbarium Alice Springs | True | No identification possible | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAAYAL0007 | http://linked.data.gov.au/dataset/ausplots/site-waayal0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2019-08-26 | Charles Darwin Reserve. 8.9km north of homestead, 97.3km west south west of Morawa. | NA | POLYGON((116.95237997 -29.50691285, 116.95238268 -29.50602856, 116.95341475 -29.50602496, 116.95341343 -29.50691268, 116.95237997 -29.50691285)) | POINT(116.95237997 -29.50691285) | -29.50691 | 116.9524 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Yalgoo | square | 100.0 | 100.0 | 10000.0 | Charles Darwin Reserve | True | The site is a lunette with the broader landscape being an alluvial plain. No surface strew or outcrop apparent, however, there is a handful of patches of limestone gravel. The site is homogenous and the community extends 60m from the centre of the plot to the south, 150m to the east, 70m to the west and 30-40m to the north. The community transitions to a more open chenopod shrubland to the east and a sandy samphire shrubland to the south. The nearest infrastructure is the access track 30-40m north of north west corner. A Rangelands Plot is also located just to west of plot. The site is long unburnt with no evidence of previous fire and a fair amount of coarse woody debris. The impact of introduced plants is low to moderate with a few weed species present e.g. Sisymbrium. The impact of grazing is also low with rabbit and macropod scats observed. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa021922 | http://linked.data.gov.au/dataset/ausplots/sv-58819 | Eremophila decipiens Ostenf. subsp. decipiens | Eremophila decipiens subsp. decipiens | WAA021922 | 2020-05-07T00:00:00Z | Shrub | WA Herbarium, Department of Parks and Wildlife | Mike Hislop, WA Herbarium | False | Note, additional material is E. serrulata. Mixed collection with WAA022763 | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0009 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0009 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-22 | Eastern side of Colson Track, 63km North west of Mac Clark conservation park, 34 km SE of Allitra tableland. | NA | POLYGON((136.0114582 -24.7817328, 136.01022504 -24.78032444, 136.01062092 -24.78003588, 136.011862 -24.78144774, 136.0114582 -24.7817328)) | POINT(136.0114582 -24.7817328) | -24.78173 | 136.0115 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Swale. Plot running North west to South East. Run on area in North east corner. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004719 | http://linked.data.gov.au/dataset/ausplots/sv-53696 | Hibiscus krichauffianus F.Muell. | Hibiscus krichauffianus | NTA+004719 | 2012-03-20T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAANUL0001 | http://linked.data.gov.au/dataset/ausplots/site-waanul0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2014-06-29 | Arubiddy Station. 9.9km north west of Arubiddy homestead. 40km north west of Cocklebiddy roadhouse. | NA | POLYGON((125.86994444 -31.73406667, 125.86994444 -31.73316389, 125.87100278 -31.73315833, 125.87099722 -31.734075, 125.86994444 -31.73406667)) | POINT(125.86994444 -31.73406667) | -31.73407 | 125.8699 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Nullarbor | square | 100.0 | 100.0 | 10000.0 | Arubiddy Station | True | Atriplex vesicaria Chenopod shrubland with some emergent Maireana sedifolia. Site is in very slight depression about 5 hectares in size. Surrounded by Maireana sedifolia. Some limestone gravel and boulders. Limestone starts at about 20cm below the surface. Long unburnt. Grazing effect low- no sheep but old rabbit warrens within the site. No introduced plant species noted. Site is flat. Some recent rain- active vegetation growth. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa++003785 | http://linked.data.gov.au/dataset/ausplots/sv-56966 | Atriplex vesicaria Heward ex Benth. | Atriplex vesicaria | WAA++003785 | 2015-02-05T00:00:00Z | Chenopod shrub | WA Herbarium, Perth | Mike Hislop, WA Herbarium | False | NA | PERTH 9193561 |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | WAGCOO0001 | http://linked.data.gov.au/dataset/ausplots/site-wagcoo0001 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-10-08 | Credo Station. 22km North West of Credo Station Homestead. | NA | POLYGON((120.64290556 -30.43612778, 120.64292722 -30.43522583, 120.6439675 -30.43524444, 120.64394583 -30.43614611, 120.64290556 -30.43612778)) | POINT(120.64290556 -30.43612778) | -30.43613 | 120.6429 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Coolgardie | square | 100.0 | 100.0 | 10000.0 | Credo Conservation Park | True | Flat site. Minimal impact of introduced plant species. Long unburnt- sparse mid and ground layer. Some surface strew. Community is confine to the plot. North and south of plot is more open spinifex dominated system. NE corner is 180m from past access track to the north east. | http://linked.data.gov.au/dataset/ausplots/veg_barcode-waa+003117 | http://linked.data.gov.au/dataset/ausplots/sv-53613 | Solanum lasiophyllum Dunal ex Poir. | Solanum lasiophyllum | WAA+003117 | 2013-11-16T00:00:00Z | Forb | TERN AusPlots Facility, University of Adelaide | Mike Hislop, WA Herbarium | False | NA | NA |
| TERN Surveillance Monitoring | http://linked.data.gov.au/dataset/ausplots | NTASSD0007 | http://linked.data.gov.au/dataset/ausplots/site-ntassd0007 | site | http://linked.data.gov.au/def/tern-cv/5bf7ae21-a454-440b-bdd7-f2fe982d8de4 | 2012-09-19 | Western side of Colson Track, 24km North of SA/NT border. Simpson Desert. | NA | POLYGON((136.564875 -25.78355556, 136.56385833 -25.781925, 136.56431111 -25.78175, 136.56531667 -25.78338889, 136.564875 -25.78355556)) | POINT(136.564875 -25.78355556) | -25.78356 | 136.5649 | NA | South West | http://linked.data.gov.au/def/tern-cv/4dd22567-d692-44e7-b29d-b80eaff829dc | Simpson Strzelecki Dunefields | rectangle | 50.0 | 200.0 | 10000.0 | Simpson Desert | True | Dune crest/slope. Plot running North west to South East | http://linked.data.gov.au/dataset/ausplots/veg_barcode-nta+004671 | http://linked.data.gov.au/dataset/ausplots/sv-53695 | Acacia ligulata A.Cunn. ex Benth. | Acacia ligulata | NTA+004671 | 2012-03-20T00:00:00Z | Shrub | TERN AusPlots Facility, University of Adelaide | Peter Latz, NT Herbarium Alice Springs | False | NA | NA |
Information between FOI’s can be join using the siteId key. In the example below we show how to join data on precipitation to plant species richness to explore their relationship. Macroecological studies have show species richness increases along gradients in precipitation (e.g. Currie 1991; Harrison, Spasojevic, and Li 2020). To analyse this relationship at a continental scale we use TERN Ecosystem Surveillance database (Sparrow et al. 2022).
After obtaining the plant specimen and climate data from EcoPlots, we:
#load climate
climate <- read_csv("data/ecoplots-example/package_470a7deeb93411ec9ad65ac04d8860c6/data/climate_observations_4ea343b4c06ff7e7ae998e498263761c.csv", na = "N/A")
plant_specimen <- read_csv("data/ecoplots-example/package_470a7deeb93411ec9ad65ac04d8860c6/data/plant-specimen_observations_4ea343b4c06ff7e7ae998e498263761c.csv", na = "N/A")
filter(parameter == "precipitation annual mean")).climate %>%
filter(parameter == "precipitation annual mean") %>% #notice that we select only precipitation, this can be done in EcoPlots
pivot_wider(id_cols=c(featureId,siteId,siteVisitId),names_from = parameter,values_from= result)-> climate_wide
plant_specimen %>%
pivot_wider(id_cols=c(featureId,siteId,siteVisitId),names_from = parameter,values_from= result) -> plant_specimen_wide
climate_wide %>% #long term climate is
group_by(siteId) %>%
slice_sample(n = 1) %>%
select(-siteVisitId)-> climate_wide
plant_specimen_wide %>%
group_by(siteId, siteVisitId) %>%
count(name = 'richness') %>%
ungroup()%>%
group_by(siteId) %>%
summarise(mean_richness =round(mean(richness, na.rm =TRUE), digits = 0))->plant_richness
siteId). For making data manipulation easy we transform the spaces in the column names to underscores.plant_env <- left_join(plant_richness, climate_wide, by = c("siteId")) %>%
select(-featureId) %>% # we do not need the featureId anymore%>%
rename_with(.fn = ~ gsub(pattern = " ", replacement = "_", x = .x)) %>%
mutate(mean_richness = as.integer(mean_richness), precipitation_annual_mean= as.numeric(precipitation_annual_mean)) %>%
filter(precipitation_annual_mean> 0)# we make sure that our variables are numeric
plant_env %>%
slice_sample(n = 50)%>%
kbl() %>%
kable_paper() %>%
scroll_box(width = "800px", height = "200px")
ggplot(plant_env, aes(y = mean_richness, x = precipitation_annual_mean))+
geom_point()+
geom_smooth(method = "glm", se = F,
method.args = list(family = "poisson"), linetype = "dashed")+
theme_bw()
mod <- glm(mean_richness~precipitation_annual_mean, family = poisson, data = plant_env)
model_parameters(mod)
## Parameter | Log-Mean | SE | 95% CI | z | p
## --------------------------------------------------------------------------------
## (Intercept) | 3.81 | 8.26e-03 | [3.79, 3.83] | 461.47 | < .001
## precipitation annual mean | 2.62e-04 | 1.11e-05 | [0.00, 0.00] | 23.59 | < .001
We assume that the biomass data has been downloaded following the instructions in section 3.
Once the data is downloaded:
#load plant individual observations
plant_ind <- read_csv("data/ecoplots-example/package_90d9bacb451511ed97e19e8d173ce220/data/plant-individual_observations_6b925a2aec8235ec69496a813ae7eef3.csv", na = "N/A")
## Warning: One or more parsing issues, see `problems()` for details
## Rows: 75029 Columns: 28
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## chr (18): dataset, datasetId, siteName, siteId, topParentSiteName, topParen...
## dbl (3): latitude, longitude, siteVisitName
## lgl (6): altitude, parentFeatureId, resultId, systemId, systemType, system...
## dttm (1): resultTime
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
#separate parameters into wide format. For this example we will retain the site name, longitude, latitude, date of sampling (siteVisitName) and the featureId
plant_ind %>%
pivot_wider(id_cols=c(siteName,latitude,longitude,siteVisitName,featureId),names_from = parameter,values_from= result) -> plant_ind_wide
#amend above-ground biomass, scientific names and siteVisitName (year) column names
colnames(plant_ind_wide)[4]<-"year"
colnames(plant_ind_wide)[6]<-"scientific_name"
colnames(plant_ind_wide)[7]<-"above_ground_biomass"
##obtain the year of sampling only
plant_ind_wide$year<- substr(plant_ind_wide$year,1,4)
#before aggregating data, convert above_ground_biomass to a numeric value
plant_ind_wide$above_ground_biomass<-as.numeric(plant_ind_wide$above_ground_biomass)
#aggregate by site and sampling year
plant_ind_wide%>%
group_by(siteName,year)%>%
summarize(site_level_biomass_kgs=sum(above_ground_biomass,na.rm=TRUE))->summed_site_level_biomass
## `summarise()` has grouped output by 'siteName'. You can override using the
## `.groups` argument.
#plot sites where biomass was sampled in 2015
site_biomass_for_plotting<-subset(summed_site_level_biomass,year=="2015")
## convert kgs to tonnes/ha
site_biomass_for_plotting$above_ground_biomass_tonnes_per_ha<-site_biomass_for_plotting$site_level_biomass_kgs/1000
## load ggplot
library(ggplot2)
plot1<-ggplot(site_biomass_for_plotting, aes(x = siteName, y = above_ground_biomass_tonnes_per_ha))+geom_bar(stat="identity",fill="grey65")+labs(x="Site",y="Above ground biomass (tonnes/ha)")
plot1+theme_bw() +theme(axis.text.x = element_text(angle = 45, hjust = 1))
#aggregate above-ground biomass by site, date and species name
plant_ind_wide%>%
group_by(siteName,year,scientific_name)%>%
summarize(species_level_biomass_kgs=sum(above_ground_biomass,na.rm=TRUE))->summed_species_level_biomass
## `summarise()` has grouped output by 'siteName', 'year'. You can override using
## the `.groups` argument.
#using the Alice Mulga site as an example, graph the change in above-ground biomass for each species over time
#subset data for the Alice Mulga site
Alice_mulga<-subset(summed_species_level_biomass,siteName=="Alice Mulga, core1ha")
#plot species biomass by year
plot2<-ggplot(Alice_mulga, aes(x = scientific_name, y = species_level_biomass_kgs,fill=year))+geom_col(position="dodge")+labs(x="Species",y="Above ground biomass (kg)")
plot2+theme_bw() +theme(axis.text.x = element_text(angle = 45, hjust = 1))